diff options
author | Liav A <liavalb@gmail.com> | 2022-09-01 21:53:29 +0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-09-02 23:36:08 +0100 |
commit | 159f9688dc1e1c407f9aaf991c99ae8ee8a1e7cb (patch) | |
tree | 760661b07220c6c87125070b8951f974a97bd451 /Meta | |
parent | 94e39308e34c952708ed5c43d49c00dc7702d96d (diff) | |
download | serenity-159f9688dc1e1c407f9aaf991c99ae8ee8a1e7cb.zip |
Meta: Use correct boot device selections when using GRUB images
Diffstat (limited to 'Meta')
-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 ce3f0e6de4..21d542d8bd 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/Prekernel root=/dev/hda4 + multiboot /boot/Prekernel root="lun0:0:0;part3" module /boot/Kernel } menuentry 'SerenityOS (text mode)' { root=hd0,5 - multiboot /boot/Prekernel graphics_subsystem_mode=off root=/dev/hda4 + multiboot /boot/Prekernel graphics_subsystem_mode=off root="lun0:0:0;part3" module /boot/Kernel } menuentry 'SerenityOS (No ACPI)' { root=hd0,5 - multiboot /boot/Prekernel root=/dev/hda4 acpi=off + multiboot /boot/Prekernel root="lun0:0:0;part3" acpi=off module /boot/Kernel } menuentry 'SerenityOS (with serial debug)' { root=hd0,5 - multiboot /boot/Prekernel serial_debug root=/dev/hda4 + multiboot /boot/Prekernel serial_debug root="lun0:0:0;part3" module /boot/Kernel } diff --git a/Meta/grub-gpt.cfg b/Meta/grub-gpt.cfg index 8454225557..404e44152d 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/Prekernel root=/dev/hda2 + multiboot /boot/Prekernel root="lun0:0:0;part1" module /boot/Kernel } menuentry 'SerenityOS (text mode)' { root=hd0,2 - multiboot /boot/Prekernel graphics_subsystem_mode=off root=/dev/hda2 + multiboot /boot/Prekernel graphics_subsystem_mode=off root="lun0:0:0;part1" module /boot/Kernel } menuentry 'SerenityOS (No ACPI)' { root=hd0,2 - multiboot /boot/Prekernel root=/dev/hda2 acpi=off + multiboot /boot/Prekernel root="lun0:0:0;part1" acpi=off module /boot/Kernel } menuentry 'SerenityOS (with serial debug)' { root=hd0,2 - multiboot /boot/Prekernel serial_debug root=/dev/hda2 + multiboot /boot/Prekernel serial_debug root="lun0:0:0;part1" module /boot/Kernel } diff --git a/Meta/grub-mbr.cfg b/Meta/grub-mbr.cfg index 3d221e24b4..1ae1daea68 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/Prekernel root=/dev/hda1 + multiboot /boot/Prekernel root="lun0:0:0;part0" module /boot/Kernel } menuentry 'SerenityOS (text mode)' { root=hd0,1 - multiboot /boot/Prekernel graphics_subsystem_mode=off root=/dev/hda1 + multiboot /boot/Prekernel graphics_subsystem_mode=off root="lun0:0:0;part0" module /boot/Kernel } menuentry 'SerenityOS (No ACPI)' { root=hd0,1 - multiboot /boot/Prekernel root=/dev/hda1 acpi=off + multiboot /boot/Prekernel root="lun0:0:0;part0" acpi=off module /boot/Kernel } menuentry 'SerenityOS (with serial debug)' { root=hd0,1 - multiboot /boot/Prekernel serial_debug root=/dev/hda1 + multiboot /boot/Prekernel serial_debug root="lun0:0:0;part0" module /boot/Kernel } |