linux: Enable fbcon deferred takeover when possible
This config value ensures that when booting through e.g. UEFI, the existing framebuffer contents stay put until the first character is printed. As the default NixOS stage-1 immediately outputs a welcome message on init, this does not impact it, but it will allow for a cleaner boot when configured as such.
This commit is contained in:
parent
28c2c0156d
commit
2b5d59cbdc
1 changed files with 1 additions and 0 deletions
|
@ -219,6 +219,7 @@ let
|
|||
FB_3DFX_ACCEL = yes;
|
||||
FB_VESA = yes;
|
||||
FRAMEBUFFER_CONSOLE = yes;
|
||||
FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER = whenAtLeast "4.19" yes;
|
||||
FRAMEBUFFER_CONSOLE_ROTATION = yes;
|
||||
FB_GEODE = mkIf (stdenv.hostPlatform.system == "i686-linux") yes;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue