diff options
Diffstat (limited to 'Meta/grub-ebr.cfg')
-rw-r--r-- | Meta/grub-ebr.cfg | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Meta/grub-ebr.cfg b/Meta/grub-ebr.cfg index 4c1a49174f..d0b555ad0b 100644 --- a/Meta/grub-ebr.cfg +++ b/Meta/grub-ebr.cfg @@ -2,21 +2,25 @@ timeout=1 menuentry 'SerenityOS (normal)' { root=hd0,5 - multiboot /boot/Kernel root=/dev/hda4 + multiboot /boot/Bootloader root=/dev/hda4 + module /boot/Kernel } menuentry 'SerenityOS (text mode)' { root=hd0,5 - multiboot /boot/Kernel boot_mode=no-fbdev root=/dev/hda4 + multiboot /boot/Bootloader boot_mode=no-fbdev root=/dev/hda4 + module /boot/Kernel } menuentry 'SerenityOS (No ACPI)' { root=hd0,5 - multiboot /boot/Kernel root=/dev/hda4 acpi=off + multiboot /boot/Bootloader root=/dev/hda4 acpi=off + module /boot/Kernel } menuentry 'SerenityOS (with serial debug)' { - root=hd0,5 - multiboot /boot/Kernel serial_debug root=/dev/hda4 + root=hd0,5 + multiboot /boot/Bootloader serial_debug root=/dev/hda4 + module /boot/Kernel } |