summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2015-12-25 20:35:59 +0200
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2016-02-01 10:46:17 +0200
commitb6621196e07429ed416ff426cc1e398cfc70a5d6 (patch)
treed89a44f84204ad9294fd80f8b0e9b8bd8d0df6dd /nixos/modules/installer/cd-dvd
parente9b80f39721965ecbcd384ef6faeb3b661d3a3a7 (diff)
downloadnixlib-b6621196e07429ed416ff426cc1e398cfc70a5d6.tar
nixlib-b6621196e07429ed416ff426cc1e398cfc70a5d6.tar.gz
nixlib-b6621196e07429ed416ff426cc1e398cfc70a5d6.tar.bz2
nixlib-b6621196e07429ed416ff426cc1e398cfc70a5d6.tar.lz
nixlib-b6621196e07429ed416ff426cc1e398cfc70a5d6.tar.xz
nixlib-b6621196e07429ed416ff426cc1e398cfc70a5d6.tar.zst
nixlib-b6621196e07429ed416ff426cc1e398cfc70a5d6.zip
sd-image-armv7l-multiplatform.nix: Add ttymxc0 to the list of consoles
Needed for the RS-232 port on Wandboard Quad (and presumably other boards
using the i.MX6 SoC).
Diffstat (limited to 'nixos/modules/installer/cd-dvd')
-rw-r--r--nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix b/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix
index 15e22fb50d48..957a8ff9ce6d 100644
--- a/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix
+++ b/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix
@@ -23,7 +23,7 @@ in
   boot.loader.generic-extlinux-compatible.enable = true;
 
   boot.kernelPackages = pkgs.linuxPackages_latest;
-  boot.kernelParams = ["console=ttyS0,115200n8" "console=ttyAMA0,115200n8" "console=tty0"];
+  boot.kernelParams = ["console=ttyS0,115200n8" "console=ttymxc0,115200n8" "console=ttyAMA0,115200n8" "console=tty0"];
 
   # FIXME: this probably should be in installation-device.nix
   users.extraUsers.root.initialHashedPassword = "";