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/grub-gpt.cfg | |
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/grub-gpt.cfg')
-rw-r--r-- | Meta/grub-gpt.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/grub-gpt.cfg b/Meta/grub-gpt.cfg index 91e6f6b110..c46256a85f 100644 --- a/Meta/grub-gpt.cfg +++ b/Meta/grub-gpt.cfg @@ -8,7 +8,7 @@ menuentry 'SerenityOS (normal)' { menuentry 'SerenityOS (text mode)' { root=hd0,2 - multiboot /boot/Prekernel boot_mode=no-fbdev root=/dev/hda2 + multiboot /boot/Prekernel fbdev=off root=/dev/hda2 module /boot/Kernel } |