diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2021-10-23 17:18:57 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-10-25 23:38:28 +0200 |
commit | 542a88a7be9fbdbc2ff3eadc38cdcaa33292fb97 (patch) | |
tree | 07f15023e4b8546c809f677a8b01b3006e7ea22b /Meta/extlinux.conf | |
parent | 314b8a374ba82152bb092d9c6ff0c2b5d5c21005 (diff) | |
download | serenity-542a88a7be9fbdbc2ff3eadc38cdcaa33292fb97.zip |
Kernel: Separate framebuffers from bootmode
Bootmode used to control framebuffers, panic behavior, and SystemServer.
This patch factors framebuffer control into a separate flag.
Note that the combination 'bootmode=self-test fbdev=on' leads to
unexpected behavior, which can only be fixed in a later commit.
Diffstat (limited to 'Meta/extlinux.conf')
-rw-r--r-- | Meta/extlinux.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/extlinux.conf b/Meta/extlinux.conf index 4a99448488..3a2ed93ce7 100644 --- a/Meta/extlinux.conf +++ b/Meta/extlinux.conf @@ -13,7 +13,7 @@ LABEL SerenityOS LABEL SerenityOSText MENU LABEL SerenityOS (text mode) KERNEL mboot.c32 - APPEND ../Prekernel root=/dev/hda1 boot_mode=text --- ../Kernel + APPEND ../Prekernel root=/dev/hda1 fbdev=off --- ../Kernel LABEL SerenityOSNoACPI MENU LABEL SerenityOS (No ACPI) |