mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
21 lines
426 B
INI
21 lines
426 B
INI
timeout=1
|
|
|
|
menuentry 'SerenityOS (normal)' {
|
|
root=hd0,1
|
|
multiboot /boot/Kernel root=/dev/hda1
|
|
}
|
|
|
|
menuentry 'SerenityOS (text mode)' {
|
|
root=hd0,1
|
|
multiboot /boot/Kernel boot_mode=no-fbdev root=/dev/hda1
|
|
}
|
|
|
|
menuentry 'SerenityOS (No ACPI)' {
|
|
root=hd0,1
|
|
multiboot /boot/Kernel root=/dev/hda1 acpi=off
|
|
}
|
|
|
|
menuentry 'SerenityOS (with serial debug)' {
|
|
root=hd0,1
|
|
multiboot /boot/Kernel serial_debug root=/dev/hda1
|
|
}
|