mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
542a88a7be
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.
26 lines
517 B
INI
26 lines
517 B
INI
timeout=1
|
|
|
|
menuentry 'SerenityOS (normal)' {
|
|
root=hd0,2
|
|
multiboot /boot/Prekernel root=/dev/hda2
|
|
module /boot/Kernel
|
|
}
|
|
|
|
menuentry 'SerenityOS (text mode)' {
|
|
root=hd0,2
|
|
multiboot /boot/Prekernel fbdev=off root=/dev/hda2
|
|
module /boot/Kernel
|
|
}
|
|
|
|
menuentry 'SerenityOS (No ACPI)' {
|
|
root=hd0,2
|
|
multiboot /boot/Prekernel root=/dev/hda2 acpi=off
|
|
module /boot/Kernel
|
|
}
|
|
|
|
menuentry 'SerenityOS (with serial debug)' {
|
|
root=hd0,2
|
|
multiboot /boot/Prekernel serial_debug root=/dev/hda2
|
|
module /boot/Kernel
|
|
}
|