mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
* Support loading the Intel 5000 firmware.
svn path=/nixos/trunk/; revision=15396
This commit is contained in:
parent
e3ad6a6f59
commit
d29b8323e1
@ -429,6 +429,15 @@ in
|
||||
";
|
||||
};
|
||||
|
||||
enableIntel5000Firmware = mkOption {
|
||||
default = false;
|
||||
merge = obsoleteMerge;
|
||||
description = "
|
||||
This option enables automatic loading of the firmware for the Intel
|
||||
PRO/Wireless 5000.
|
||||
";
|
||||
};
|
||||
|
||||
enableZydasZD1211Firmware = mkOption {
|
||||
default = false;
|
||||
merge = obsoleteMerge;
|
||||
|
@ -97,6 +97,7 @@ let
|
||||
pkgs.lib.optional config.networking.enableIntel2200BGFirmware pkgs.ipw2200fw
|
||||
++ pkgs.lib.optional config.networking.enableIntel3945ABGFirmware pkgs.iwlwifi3945ucode
|
||||
++ pkgs.lib.optional config.networking.enableIntel4965AGNFirmware kernelPackages.iwlwifi4965ucode
|
||||
++ pkgs.lib.optional config.networking.enableIntel5000Firmware kernelPackages.iwlwifi5000ucode
|
||||
++ pkgs.lib.optional config.networking.enableZydasZD1211Firmware pkgs.zd1211fw
|
||||
++ pkgs.lib.optional config.hardware.enableGo7007 "${kernelPackages.wis_go7007}/firmware"
|
||||
++ config.services.udev.addFirmware
|
||||
|
Loading…
Reference in New Issue
Block a user