mirror of
https://github.com/SerenityOS/serenity
synced 2024-11-05 17:46:52 +00:00
80dad2d0b5
These still assume the main boot image is called Prekernel, which is no longer the case.
21 lines
463 B
INI
21 lines
463 B
INI
timeout=1
|
|
|
|
menuentry 'SerenityOS (normal)' {
|
|
root=hd0,2
|
|
multiboot /boot/Kernel root="lun0:0:0;part1"
|
|
}
|
|
|
|
menuentry 'SerenityOS (text mode)' {
|
|
root=hd0,2
|
|
multiboot /boot/Kernel graphics_subsystem_mode=off root="lun0:0:0;part1"
|
|
}
|
|
|
|
menuentry 'SerenityOS (No ACPI)' {
|
|
root=hd0,2
|
|
multiboot /boot/Kernel root="lun0:0:0;part1" acpi=off
|
|
}
|
|
|
|
menuentry 'SerenityOS (with serial debug)' {
|
|
root=hd0,2
|
|
multiboot /boot/Kernel serial_debug root="lun0:0:0;part1"
|
|
}
|