1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:17:34 +00:00

Meta: Grub configs use correct kernel image name

This commit is contained in:
etaIneLp 2020-05-26 17:53:31 -04:00 committed by Andreas Kling
parent 0c1ed0ebf3
commit 2ec07655cf
3 changed files with 9 additions and 9 deletions

View file

@ -2,15 +2,15 @@ timeout=1
menuentry 'SerenityOS (normal)' {
root=hd0,2
multiboot /boot/kernel root=/dev/hda2
multiboot /boot/Kernel root=/dev/hda2
}
menuentry 'SerenityOS (No ACPI)' {
root=hd0,2
multiboot /boot/kernel root=/dev/hda2 acpi=off
multiboot /boot/Kernel root=/dev/hda2 acpi=off
}
menuentry 'SerenityOS (with serial debug)' {
root=hd0,2
multiboot /boot/kernel serial_debug root=/dev/hda2
multiboot /boot/Kernel serial_debug root=/dev/hda2
}