From 37470cccc5d6acc66b14f359d76e0b1c5ed38f93 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 8 Nov 2009 09:08:50 +0000 Subject: [PATCH] * Blacklist the "evbug" module. svn path=/nixos/trunk/; revision=18285 --- modules/system/boot/modprobe.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/modules/system/boot/modprobe.nix b/modules/system/boot/modprobe.nix index 919a08f22ba..520a7b19767 100644 --- a/modules/system/boot/modprobe.nix +++ b/modules/system/boot/modprobe.nix @@ -72,9 +72,16 @@ with pkgs.lib; target = "modprobe.conf"; }; + boot.blacklistedKernelModules = + [ # This module is for debugging and generates gigantic amounts + # of log output, so it should never be loaded automatically. + "evbug" + + # !!! Hm, Ubuntu blacklists all framebuffer devices because + # they're "buggy" and cause suspend problems. Maybe we should + # too? + ]; + }; } - - - \ No newline at end of file