diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-01-17 11:22:45 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-01-17 22:01:47 +0100 |
commit | b153f9f0a94001baf044d257ec278613521d09b3 (patch) | |
tree | cfbfcd5b520dac091690a9939a450e9a581bef6a /gnu/system | |
parent | e8d2168c2711d008f6f86e223f1f3339c17c9030 (diff) | |
download | guix-b153f9f0a94001baf044d257ec278613521d09b3.tar guix-b153f9f0a94001baf044d257ec278613521d09b3.tar.gz |
linux-initrd: Remove "usbkbd" from the default set of modules.
Reported by Ricardo Wurmus <rekado@elephly.net>
at <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=20433#39>.
* gnu/system/linux-initrd.scm (base-initrd): Remove "usbkbd".
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/linux-initrd.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm index 6130e020c8..b1ea637de9 100644 --- a/gnu/system/linux-initrd.scm +++ b/gnu/system/linux-initrd.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -179,7 +179,7 @@ loaded at boot time in the order in which they appear." ;; Modules added to the initrd and loaded from the initrd. `("ahci" ;for SATA controllers "usb-storage" "uas" ;for the installation image etc. - "usbkbd" "usbhid" ;USB keyboards, for debugging + "usbhid" ;USB keyboards, for debugging "dm-crypt" "xts" ;for encrypted root partitions ,@(if (string-match "^(x86_64|i[3-6]86)-" (%current-system)) '("pata_acpi" "pata_atiixp" ;for ATA controllers |