guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: system: Blacklist usbkbd kernel module in default


From: guix-commits
Subject: branch master updated: system: Blacklist usbkbd kernel module in default kernel-arguments.
Date: Fri, 01 May 2020 08:29:12 -0400

This is an automated email from the git hooks/post-receive script.

pelzflorian pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new fd31731  system: Blacklist usbkbd kernel module in default 
kernel-arguments.
fd31731 is described below

commit fd31731b9dd704e5182655783551b94fa80afd88
Author: Florian Pelz <address@hidden>
AuthorDate: Fri May 1 11:08:07 2020 +0200

    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.
---
 gnu/system.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/system.scm b/gnu/system.scm
index ab6982e..107b93d 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]