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".
This commit is contained in:
parent
e8d2168c27
commit
b153f9f0a9
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; 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.
|
;;; 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.
|
;; Modules added to the initrd and loaded from the initrd.
|
||||||
`("ahci" ;for SATA controllers
|
`("ahci" ;for SATA controllers
|
||||||
"usb-storage" "uas" ;for the installation image etc.
|
"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
|
"dm-crypt" "xts" ;for encrypted root partitions
|
||||||
,@(if (string-match "^(x86_64|i[3-6]86)-" (%current-system))
|
,@(if (string-match "^(x86_64|i[3-6]86)-" (%current-system))
|
||||||
'("pata_acpi" "pata_atiixp" ;for ATA controllers
|
'("pata_acpi" "pata_atiixp" ;for ATA controllers
|
||||||
|
|
Loading…
Reference in New Issue