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
Notes: sideshowbarker 2024-07-19 18:30:34 +09:00
3 changed files with 9 additions and 9 deletions

View file

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

View file

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

View file

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