serenity/Meta/grub-ebr.cfg
Ben Wiederhake 542a88a7be Kernel: Separate framebuffers from bootmode
Bootmode used to control framebuffers, panic behavior, and SystemServer.
This patch factors framebuffer control into a separate flag.
Note that the combination 'bootmode=self-test fbdev=on' leads to
unexpected behavior, which can only be fixed in a later commit.
2021-10-25 23:38:28 +02:00

27 lines
518 B
INI

timeout=1
menuentry 'SerenityOS (normal)' {
root=hd0,5
multiboot /boot/Prekernel root=/dev/hda4
module /boot/Kernel
}
menuentry 'SerenityOS (text mode)' {
root=hd0,5
multiboot /boot/Prekernel fbdev=off root=/dev/hda4
module /boot/Kernel
}
menuentry 'SerenityOS (No ACPI)' {
root=hd0,5
multiboot /boot/Prekernel root=/dev/hda4 acpi=off
module /boot/Kernel
}
menuentry 'SerenityOS (with serial debug)' {
root=hd0,5
multiboot /boot/Prekernel serial_debug root=/dev/hda4
module /boot/Kernel
}