⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 boot.h

📁 linux 的引导程序源码The Microsoft&reg Windows&reg Software Development Kit (SDK) provides the documentation
💻 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 + -