summaryrefslogtreecommitdiff
path: root/Meta/grub-mbr.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'Meta/grub-mbr.cfg')
-rw-r--r--Meta/grub-mbr.cfg12
1 files changed, 8 insertions, 4 deletions
diff --git a/Meta/grub-mbr.cfg b/Meta/grub-mbr.cfg
index 150bce4f49..34e727430b 100644
--- a/Meta/grub-mbr.cfg
+++ b/Meta/grub-mbr.cfg
@@ -2,20 +2,24 @@ timeout=1
menuentry 'SerenityOS (normal)' {
root=hd0,1
- multiboot /boot/Kernel root=/dev/hda1
+ multiboot /boot/Bootloader root=/dev/hda1
+ module /boot/Kernel
}
menuentry 'SerenityOS (text mode)' {
root=hd0,1
- multiboot /boot/Kernel boot_mode=no-fbdev root=/dev/hda1
+ multiboot /boot/Bootloader boot_mode=no-fbdev root=/dev/hda1
+ module /boot/Kernel
}
menuentry 'SerenityOS (No ACPI)' {
root=hd0,1
- multiboot /boot/Kernel root=/dev/hda1 acpi=off
+ multiboot /boot/Bootloader root=/dev/hda1 acpi=off
+ module /boot/Kernel
}
menuentry 'SerenityOS (with serial debug)' {
root=hd0,1
- multiboot /boot/Kernel serial_debug root=/dev/hda1
+ multiboot /boot/Bootloader serial_debug root=/dev/hda1
+ module /boot/Kernel
}