mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 10:38:13 +00:00
22 lines
422 B
INI
22 lines
422 B
INI
timeout=1
|
|
|
|
menuentry 'SerenityOS (normal)' {
|
|
root=hd0,5
|
|
multiboot /boot/Kernel root=/dev/hda5
|
|
}
|
|
|
|
menuentry 'SerenityOS (text mode)' {
|
|
root=hd0,5
|
|
multiboot /boot/Kernel boot_mode=text root=/dev/hda5
|
|
}
|
|
|
|
menuentry 'SerenityOS (No ACPI)' {
|
|
root=hd0,5
|
|
multiboot /boot/Kernel root=/dev/hda5 acpi=off
|
|
}
|
|
|
|
menuentry 'SerenityOS (with serial debug)' {
|
|
root=hd0,5
|
|
multiboot /boot/Kernel serial_debug root=/dev/hda5
|
|
}
|
|
|