forked from mirrors/nixpkgs
f08fb6e6c7
Also cherry-pick a licensing fix from torvalds/linux@7d3e2eb178 necessary for building broadcom-sta on kernel 4.2. For more details, see: https://github.com/longsleep/bcmwl-ubuntu/issues/6 Fixes #9948.
27 lines
856 B
Nix
27 lines
856 B
Nix
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
|
|
|
|
import ./generic.nix (args // rec {
|
|
version = "4.2";
|
|
modDirVersion = "4.2.0";
|
|
extraMeta.branch = "4.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
|
|
sha256 = "1syv8n5hwzdbx69rsj4vayyzskfq1w5laalg5jjd523my52f086g";
|
|
};
|
|
|
|
features.iwlwifi = true;
|
|
features.efiBootStub = true;
|
|
features.needsCifsUtils = true;
|
|
features.canDisableNetfilterConntrackHelpers = true;
|
|
features.netfilterRPFilter = true;
|
|
|
|
# cherry-pick from upstream to resolve a licensing problem that prevents
|
|
# compiling the broadcom-sta wireless driver on kernels >= 4.2
|
|
# see: https://github.com/longsleep/bcmwl-ubuntu/issues/6
|
|
kernelPatches = [ {
|
|
name = "flush-workqueue-export";
|
|
patch = ./flush_workqueue-export.patch;
|
|
} ];
|
|
} // (args.argsOverride or {}))
|