1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 21:47:45 +00:00

Kernel: Stop bootloader from setting video mode with Multiboot

Meta: Update INSTALL.md and grub configs for new boot_mode option
This commit is contained in:
etaIneLp 2020-05-27 10:36:14 -04:00 committed by Andreas Kling
parent eae4843712
commit 7bc871ca8d
5 changed files with 18 additions and 10 deletions

View file

@ -5,6 +5,11 @@ menuentry 'SerenityOS (normal)' {
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

View file

@ -5,6 +5,11 @@ menuentry 'SerenityOS (normal)' {
multiboot /boot/Kernel root=/dev/hda2
}
menuentry 'SerenityOS (text mode)' {
root=hd0,2
multiboot /boot/Kernel boot_mode=text root=/dev/hda2
}
menuentry 'SerenityOS (No ACPI)' {
root=hd0,2
multiboot /boot/Kernel root=/dev/hda2 acpi=off

View file

@ -5,12 +5,17 @@ menuentry 'SerenityOS (normal)' {
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
root=hd0,1
multiboot /boot/Kernel serial_debug root=/dev/hda1
}