diff options
author | Gunnar Beutner <gbeutner@serenityos.org> | 2021-07-18 19:40:01 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-18 22:08:03 +0200 |
commit | 61a8f3e81a817e189ca4f64741d9f7d76ae8c345 (patch) | |
tree | 1cea167975a47b501893123de3b46abdf0bd6a36 | |
parent | 5ff141607652d1adf0248bbd32cd71f48d9ea6cb (diff) | |
download | serenity-61a8f3e81a817e189ca4f64741d9f7d76ae8c345.zip |
Kernel: Fix GRUB config by specifying the correct file name
-rw-r--r-- | Meta/grub-ebr.cfg | 8 | ||||
-rw-r--r-- | Meta/grub-gpt.cfg | 8 | ||||
-rw-r--r-- | Meta/grub-mbr.cfg | 8 |
3 files changed, 12 insertions, 12 deletions
diff --git a/Meta/grub-ebr.cfg b/Meta/grub-ebr.cfg index d0b555ad0b..0ee30831fa 100644 --- a/Meta/grub-ebr.cfg +++ b/Meta/grub-ebr.cfg @@ -2,25 +2,25 @@ timeout=1 menuentry 'SerenityOS (normal)' { root=hd0,5 - multiboot /boot/Bootloader root=/dev/hda4 + multiboot /boot/Prekernel root=/dev/hda4 module /boot/Kernel } menuentry 'SerenityOS (text mode)' { root=hd0,5 - multiboot /boot/Bootloader boot_mode=no-fbdev root=/dev/hda4 + multiboot /boot/Prekernel boot_mode=no-fbdev root=/dev/hda4 module /boot/Kernel } menuentry 'SerenityOS (No ACPI)' { root=hd0,5 - multiboot /boot/Bootloader root=/dev/hda4 acpi=off + multiboot /boot/Prekernel root=/dev/hda4 acpi=off module /boot/Kernel } menuentry 'SerenityOS (with serial debug)' { root=hd0,5 - multiboot /boot/Bootloader serial_debug root=/dev/hda4 + multiboot /boot/Prekernel serial_debug root=/dev/hda4 module /boot/Kernel } diff --git a/Meta/grub-gpt.cfg b/Meta/grub-gpt.cfg index 72f16b805c..91e6f6b110 100644 --- a/Meta/grub-gpt.cfg +++ b/Meta/grub-gpt.cfg @@ -2,24 +2,24 @@ timeout=1 menuentry 'SerenityOS (normal)' { root=hd0,2 - multiboot /boot/Bootloader root=/dev/hda2 + multiboot /boot/Prekernel root=/dev/hda2 module /boot/Kernel } menuentry 'SerenityOS (text mode)' { root=hd0,2 - multiboot /boot/Bootloader boot_mode=no-fbdev root=/dev/hda2 + multiboot /boot/Prekernel boot_mode=no-fbdev root=/dev/hda2 module /boot/Kernel } menuentry 'SerenityOS (No ACPI)' { root=hd0,2 - multiboot /boot/Bootloader root=/dev/hda2 acpi=off + multiboot /boot/Prekernel root=/dev/hda2 acpi=off module /boot/Kernel } menuentry 'SerenityOS (with serial debug)' { root=hd0,2 - multiboot /boot/Bootloader serial_debug root=/dev/hda2 + multiboot /boot/Prekernel serial_debug root=/dev/hda2 module /boot/Kernel } diff --git a/Meta/grub-mbr.cfg b/Meta/grub-mbr.cfg index 34e727430b..20e8ef83df 100644 --- a/Meta/grub-mbr.cfg +++ b/Meta/grub-mbr.cfg @@ -2,24 +2,24 @@ timeout=1 menuentry 'SerenityOS (normal)' { root=hd0,1 - multiboot /boot/Bootloader root=/dev/hda1 + multiboot /boot/Prekernel root=/dev/hda1 module /boot/Kernel } menuentry 'SerenityOS (text mode)' { root=hd0,1 - multiboot /boot/Bootloader boot_mode=no-fbdev root=/dev/hda1 + multiboot /boot/Prekernel boot_mode=no-fbdev root=/dev/hda1 module /boot/Kernel } menuentry 'SerenityOS (No ACPI)' { root=hd0,1 - multiboot /boot/Bootloader root=/dev/hda1 acpi=off + multiboot /boot/Prekernel root=/dev/hda1 acpi=off module /boot/Kernel } menuentry 'SerenityOS (with serial debug)' { root=hd0,1 - multiboot /boot/Bootloader serial_debug root=/dev/hda1 + multiboot /boot/Prekernel serial_debug root=/dev/hda1 module /boot/Kernel } |