📄 boot.h
字号:
/* boot.h - Boot image composition *//* Copyright 1992-1995 Werner Almesberger. See file COPYING for details. */#ifndef BOOT_H#define BOOT_H#include "lilo.h"void boot_image(char *spec,IMAGE_DESCR *descr);/* Maps a "classic" boot image. */void boot_device(char *spec,char *range,IMAGE_DESCR *descr);/* Maps sectors from a device as the boot image. Can be used to boot raw-written disks. */void boot_unstripped(char *boot,char *setup,char *kernel,IMAGE_DESCR *descr);/* Maps an unstripped kernel image as the boot image. The setup (without the header) is prepended. */char *boot_mbr(const char *boot, int table);/* derive name of MBR from partition name; check for primary partition if table==1 */void boot_other(char *loader,char *boot,char *part,IMAGE_DESCR *descr);/* Merges a loader with a partition table and appends a boot sector. This mix is used to boot non-Linux systems. */void dump(char *spec,IMAGE_DESCR *descr);/* Maps a crash dump file. */#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -