diff options
Diffstat (limited to 'Meta/extlinux.conf')
-rw-r--r-- | Meta/extlinux.conf | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Meta/extlinux.conf b/Meta/extlinux.conf new file mode 100644 index 0000000000..0d22761b13 --- /dev/null +++ b/Meta/extlinux.conf @@ -0,0 +1,26 @@ +UI menu.c32 +PROMPT 0 + +MENU TITLE SerenityOS Boot menu +TIMEOUT 10 +DEFAULT SerenityOS + +LABEL SerenityOS + MENU LABEL SerenityOS + KERNEL mboot.c32 + APPEND ../Kernel root=/dev/hda1 + +LABEL SerenityOSText + MENU LABEL SerenityOS (text mode) + KERNEL mboot.c32 + APPEND ../Kernel root=/dev/hda1 boot_mode=text + +LABEL SerenityOSNoACPI + MENU LABEL SerenityOS (No ACPI) + KERNEL mboot.c32 + APPEND ../Kernel root=/dev/hda1 acpi=off + +LABEL SerenityOSSerialDebug + MENU LABEL SerenityOS (with serial debug) + KERNEL mboot.c32 + APPEND ../Kernel root=/dev/hda1 serial_debug |