From c1775a908c85905cdabd42cda7c9498694e49a6c Mon Sep 17 00:00:00 2001 From: DolphinChips Date: Sat, 8 May 2021 17:39:03 +0500 Subject: [PATCH] Meta: Add EXTLINUX config --- Meta/extlinux.conf | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Meta/extlinux.conf diff --git a/Meta/extlinux.conf b/Meta/extlinux.conf new file mode 100644 index 00000000000..0d22761b134 --- /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