mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 03:57:15 +02:00
26 lines
535 B
INI
26 lines
535 B
INI
timeout=1
|
|
|
|
menuentry 'SerenityOS (normal)' {
|
|
root=hd0,1
|
|
multiboot /boot/Prekernel root=/dev/hda1
|
|
module /boot/Kernel
|
|
}
|
|
|
|
menuentry 'SerenityOS (text mode)' {
|
|
root=hd0,1
|
|
multiboot /boot/Prekernel graphics_subsystem_mode=off root=/dev/hda1
|
|
module /boot/Kernel
|
|
}
|
|
|
|
menuentry 'SerenityOS (No ACPI)' {
|
|
root=hd0,1
|
|
multiboot /boot/Prekernel root=/dev/hda1 acpi=off
|
|
module /boot/Kernel
|
|
}
|
|
|
|
menuentry 'SerenityOS (with serial debug)' {
|
|
root=hd0,1
|
|
multiboot /boot/Prekernel serial_debug root=/dev/hda1
|
|
module /boot/Kernel
|
|
}
|