20 lines
544 B
Nix
20 lines
544 B
Nix
|
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
|
||
|
|
||
|
import ./generic.nix (args // rec {
|
||
|
version = "4.10";
|
||
|
extraMeta.branch = "4.10";
|
||
|
modDirVersion = "4.10.0";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
|
||
|
sha256 = "3c95d9f049bd085e5c346d2c77f063b8425f191460fcd3ae9fe7e94e0477dc4b";
|
||
|
};
|
||
|
|
||
|
kernelPatches = args.kernelPatches;
|
||
|
|
||
|
features.iwlwifi = true;
|
||
|
features.efiBootStub = true;
|
||
|
features.needsCifsUtils = true;
|
||
|
features.netfilterRPFilter = true;
|
||
|
} // (args.argsOverride or {}))
|