* Blacklist the "evbug" module.

svn path=/nixos/trunk/; revision=18285
This commit is contained in:
Eelco Dolstra 2009-11-08 09:08:50 +00:00
parent 16c2aa734f
commit 37470cccc5

View File

@ -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?
];
};
}