diff options
Diffstat (limited to 'Meta/grub-gpt.cfg')
-rw-r--r-- | Meta/grub-gpt.cfg | 8 |
1 files changed, 4 insertions, 4 deletions
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 } |