1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-05 21:55:08 +00:00
serenity/Meta/grub-ebr.cfg
Idan Horowitz 80dad2d0b5 Meta: Unbreak default grub configs after Prekernel/Kernel merge
These still assume the main boot image is called Prekernel, which is no
longer the case.
2024-05-27 17:35:42 +02:00

23 lines
464 B
INI

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