bzt 586ddf60ac Updated FS/Z | 11 місяців тому | |
---|---|---|
.. | ||
Makefile | 4 роки тому | |
OLVASSEL.md | 3 роки тому | |
README.md | 3 роки тому | |
boot.asm | 3 роки тому | |
bootboot.asm | 1 рік тому | |
bootboot.inc | 3 роки тому | |
fs.inc | 11 місяців тому | |
mkboot.c | 3 роки тому | |
tinf.inc | 3 роки тому |
See BOOTBOOT Protocol for common details.
On BIOS based systems, the same image can be loaded via Multiboot, chainload from MBR, VBR (GPT hybrid booting) or from CDROM boot record via boot.bin, run as a BIOS Expansion ROM (so not only the ramdisk can be in ROM, but the loader as well), or can be loaded as a Linux kernel (by ISOLINUX, LoadLin etc.).
IRQs masked. GDT unspecified, but valid, IDT unset. SSE, SMP enabled. Code is running in supervisor mode in ring 0 on all cores.
BIOS disk / cdrom: copy bootboot.bin to FS0:\BOOTBOOT.BIN. You can place it inside your INITRD partition
or outside of partition area as well (with `dd conv=notrunc seek=x`). Finally install __boot.bin__ in the
El Torito Boot catalog with "no emulation" or in Master Boot Record (or in Volume Boot Record if you have a boot manager),
saving bootboot.bin's first sector's LBA number in a dword at 0x1B0. The [mkboot](https://gitlab.com/bztsrc/bootboot/blob/master/x86_64-bios/mkboot.c)
utility will do that for you.
BIOS ROM: install bootboot.bin in a BIOS Expansion ROM.
GRUB: specify bootboot.bin as a Multiboot "kernel" in grub.cfg, or you can also chainload boot.bin. You can load the initrd and the environment file as modules (in this order). If no modules given, they will be loaded from disk as usual. Example:
menuentry "MyKernel" {
multiboot /bootboot.bin # the loader
module /bootboot/initrd # first module is the initrd (optional)
module /bootboot/config # second module is the environment file (optional)
boot
}