diff options
author | Gunnar Beutner <gbeutner@serenityos.org> | 2021-07-20 03:48:40 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-20 15:12:19 +0200 |
commit | 696e15fcd899fd88b389a5f47bd69460f871f3a1 (patch) | |
tree | e9856edb16dc5638d1f3337770a75c54aa1bfc6a | |
parent | 6a45ebe282f9923838a6fc9e273938f209240af6 (diff) | |
download | serenity-696e15fcd899fd88b389a5f47bd69460f871f3a1.zip |
Meta: Update extlinux config for the recent prekernel changes
-rw-r--r-- | Meta/extlinux.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Meta/extlinux.conf b/Meta/extlinux.conf index 0d22761b13..4a99448488 100644 --- a/Meta/extlinux.conf +++ b/Meta/extlinux.conf @@ -8,19 +8,19 @@ DEFAULT SerenityOS LABEL SerenityOS MENU LABEL SerenityOS KERNEL mboot.c32 - APPEND ../Kernel root=/dev/hda1 + APPEND ../Prekernel root=/dev/hda1 --- ../Kernel LABEL SerenityOSText MENU LABEL SerenityOS (text mode) KERNEL mboot.c32 - APPEND ../Kernel root=/dev/hda1 boot_mode=text + APPEND ../Prekernel root=/dev/hda1 boot_mode=text --- ../Kernel LABEL SerenityOSNoACPI MENU LABEL SerenityOS (No ACPI) KERNEL mboot.c32 - APPEND ../Kernel root=/dev/hda1 acpi=off + APPEND ../Prekernel root=/dev/hda1 acpi=off --- ../Kernel LABEL SerenityOSSerialDebug MENU LABEL SerenityOS (with serial debug) KERNEL mboot.c32 - APPEND ../Kernel root=/dev/hda1 serial_debug + APPEND ../Prekernel root=/dev/hda1 serial_debug --- ../Kernel |