mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05: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:
parent
53e8b852e9
commit
fd31731b9d
1 changed files with 2 additions and 1 deletions
|
@ -492,7 +492,8 @@ (define (package-for-kernel target-kernel module-package)
|
|||
|
||||
(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.
|
||||
|
|
Loading…
Reference in a new issue