summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd/installation-cd-base.nix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2015-06-03 23:43:17 +0300
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2015-06-04 11:26:20 +0300
commit9c2f2bc89334a0c824d83c0d50072580f77b365c (patch)
tree501e8220fb8ee84476c0bae02c44824660aeb54a /nixos/modules/installer/cd-dvd/installation-cd-base.nix
parent33a1b14b06b74e00f8c0cea29ec86b8f30cafc1f (diff)
downloadnixpkgs-9c2f2bc89334a0c824d83c0d50072580f77b365c.tar
nixpkgs-9c2f2bc89334a0c824d83c0d50072580f77b365c.tar.gz
nixpkgs-9c2f2bc89334a0c824d83c0d50072580f77b365c.tar.bz2
nixpkgs-9c2f2bc89334a0c824d83c0d50072580f77b365c.tar.lz
nixpkgs-9c2f2bc89334a0c824d83c0d50072580f77b365c.tar.xz
nixpkgs-9c2f2bc89334a0c824d83c0d50072580f77b365c.tar.zst
nixpkgs-9c2f2bc89334a0c824d83c0d50072580f77b365c.zip
kernel-config: Enable FB_VESA and FRAMEBUFFER_CONSOLE
Commit 159fed47bc (nixos/grub: Fix video display on efi) changed BIOS
systems to start in non-text mode as well. Enable FB_VESA to get a
framebuffer console on BIOS systems. Change FRAMEBUFFER_CONSOLE to 'y'
instead of the default 'm' to so the user doesn't need to manually load
the fbcon module anymore.

Other distros have similar defaults, at least on Arch:
    CONFIG_FB_VESA=y
    CONFIG_FRAMEBUFFER_CONSOLE=y
and on Ubuntu (12.04):
    CONFIG_FB_VESA=m
    CONFIG_FRAMEBUFFER_CONSOLE=y

Fixes #8139
Diffstat (limited to 'nixos/modules/installer/cd-dvd/installation-cd-base.nix')
-rw-r--r--nixos/modules/installer/cd-dvd/installation-cd-base.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/nixos/modules/installer/cd-dvd/installation-cd-base.nix b/nixos/modules/installer/cd-dvd/installation-cd-base.nix
index 446d79ce220..a660199cbe0 100644
--- a/nixos/modules/installer/cd-dvd/installation-cd-base.nix
+++ b/nixos/modules/installer/cd-dvd/installation-cd-base.nix
@@ -42,9 +42,6 @@ with lib;
   # Add Memtest86+ to the CD.
   boot.loader.grub.memtest86.enable = true;
 
-  # Get a console as soon as the initrd loads fbcon on EFI boot.
-  boot.initrd.kernelModules = [ "fbcon" ];
-
   # Allow the user to log in as root without a password.
   users.extraUsers.root.initialHashedPassword = "";
 }