From 2ec07655cf8a31a06175633a201fa633a6bc4f1c Mon Sep 17 00:00:00 2001 From: etaIneLp <33374857+etaIneLp@users.noreply.github.com> Date: Tue, 26 May 2020 17:53:31 -0400 Subject: [PATCH] Meta: Grub configs use correct kernel image name --- Meta/grub-ebr.cfg | 6 +++--- Meta/grub-gpt.cfg | 6 +++--- Meta/grub-mbr.cfg | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Meta/grub-ebr.cfg b/Meta/grub-ebr.cfg index 99300a0be49..2b351ce72f5 100644 --- a/Meta/grub-ebr.cfg +++ b/Meta/grub-ebr.cfg @@ -2,16 +2,16 @@ timeout=1 menuentry 'SerenityOS (normal)' { root=hd0,5 - multiboot /boot/kernel root=/dev/hda5 + multiboot /boot/Kernel root=/dev/hda5 } menuentry 'SerenityOS (No ACPI)' { root=hd0,5 - multiboot /boot/kernel root=/dev/hda5 acpi=off + multiboot /boot/Kernel root=/dev/hda5 acpi=off } menuentry 'SerenityOS (with serial debug)' { root=hd0,5 - multiboot /boot/kernel serial_debug root=/dev/hda5 + multiboot /boot/Kernel serial_debug root=/dev/hda5 } diff --git a/Meta/grub-gpt.cfg b/Meta/grub-gpt.cfg index a2c13c1be5c..9de1494daae 100644 --- a/Meta/grub-gpt.cfg +++ b/Meta/grub-gpt.cfg @@ -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 } diff --git a/Meta/grub-mbr.cfg b/Meta/grub-mbr.cfg index 8e98c5cd70f..bbb37ffc661 100644 --- a/Meta/grub-mbr.cfg +++ b/Meta/grub-mbr.cfg @@ -2,15 +2,15 @@ timeout=1 menuentry 'SerenityOS (normal)' { root=hd0,1 - multiboot /boot/kernel root=/dev/hda1 + multiboot /boot/Kernel root=/dev/hda1 } menuentry 'SerenityOS (No ACPI)' { root=hd0,1 - multiboot /boot/kernel root=/dev/hda1 acpi=off + multiboot /boot/Kernel root=/dev/hda1 acpi=off } menuentry 'SerenityOS (with serial debug)' { root=hd0,1 - multiboot /boot/kernel serial_debug root=/dev/hda1 + multiboot /boot/Kernel serial_debug root=/dev/hda1 }