* The Linux kernel >= 2.6.27 provides firmware, so add it to the

firmware search path.

(Patch from Eelco Dolstra)

svn path=/nixos/branches/fix-style/; revision=13855
This commit is contained in:
Nicolas Pierron 2009-01-25 15:48:53 +00:00
parent 9cdfe5a711
commit 6086aee542

View File

@ -157,4 +157,11 @@ in
++ pkgs.lib.optional config.hardware.enableGo7007 kernelPackages.wis_go7007
++ config.boot.extraModulePackages;
};
services = {
udev = {
# The Linux kernel >= 2.6.27 provides firmware
addFirmware = [ "${kernel}/lib/firmware" ];
};
};
}