mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-08 04:50:08 +03:00
7bc871ca8d
Meta: Update INSTALL.md and grub configs for new boot_mode option
22 lines
422 B
INI
22 lines
422 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=text 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
|
|
}
|