diff options
Diffstat (limited to 'Meta')
-rw-r--r-- | Meta/grub-ebr.cfg | 6 | ||||
-rw-r--r-- | Meta/grub-gpt.cfg | 6 | ||||
-rw-r--r-- | 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 99300a0be4..2b351ce72f 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 a2c13c1be5..9de1494daa 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 8e98c5cd70..bbb37ffc66 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 } |