3
4
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

system: Blacklist usbkbd kernel module in default kernel-arguments.

This is said to avoid a race with the usbhid kernel module.
See <https://issues.guix.gnu.org/35574#18>.

* gnu/system.scm (%default-modprobe-blacklist): Blacklist it.
This commit is contained in:
Florian Pelz 2020-05-01 11:08:07 +02:00
parent 53e8b852e9
commit fd31731b9d
No known key found for this signature in database
GPG key ID: 300888CB39C63817

View file

@ -492,7 +492,8 @@ possible (that is if there's a LINUX keyword argument in the build system)."
(define %default-modprobe-blacklist
;; List of kernel modules to blacklist by default.
'("usbmouse")) ;see <https://bugs.gnu.org/35574>
'("usbmouse" ;races with bcm5974, see <https://bugs.gnu.org/35574>
"usbkbd")) ;races with usbhid, see <https://issues.guix.gnu.org/35574#18>
(define %default-kernel-arguments
;; Default arguments passed to the kernel.