1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 11:40:46 +00:00
serenity/Meta/grub-mbr.cfg

26 lines
563 B
INI

timeout=1
menuentry 'SerenityOS (normal)' {
root=hd0,1
multiboot /boot/Prekernel root="lun0:0:0;part0"
module /boot/Kernel
}
menuentry 'SerenityOS (text mode)' {
root=hd0,1
multiboot /boot/Prekernel graphics_subsystem_mode=off root="lun0:0:0;part0"
module /boot/Kernel
}
menuentry 'SerenityOS (No ACPI)' {
root=hd0,1
multiboot /boot/Prekernel root="lun0:0:0;part0" acpi=off
module /boot/Kernel
}
menuentry 'SerenityOS (with serial debug)' {
root=hd0,1
multiboot /boot/Prekernel serial_debug root="lun0:0:0;part0"
module /boot/Kernel
}