ladybird/Kernel/grub-mbr.cfg
Liav A 60715695b2 Partition Table: Change Script files
From now we can use build-image-grub.sh to generate a virtual disk
with the supported partition schemes - MBR, GPT & EBR (MBR +
Extended partitions).
2020-02-02 00:20:41 +01:00

17 lines
311 B
INI

timeout=1
menuentry 'SerenityOS (normal)' {
root=hd0,1
multiboot /boot/kernel root=/dev/hda1
}
menuentry 'SerenityOS (No ACPI)' {
root=hd0,1
multiboot /boot/kernel root=/dev/hda1 noacpi
}
menuentry 'SerenityOS (with serial debug)' {
root=hd0,1
multiboot /boot/kernel serial_debug root=/dev/hda1
}