2015-11-19 05:08:24 -08:00
|
|
|
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
|
|
|
|
|
|
|
|
import ./generic.nix (args // rec {
|
2016-09-24 15:07:14 -07:00
|
|
|
version = "3.12.63";
|
2015-11-19 05:08:24 -08:00
|
|
|
extraMeta.branch = "3.12";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
|
2016-09-24 15:07:14 -07:00
|
|
|
sha256 = "0srg7xd68n10b28c3l5qa4dx5qr84ci7fdn48wcj79y7h2s0367x";
|
2015-11-19 05:08:24 -08:00
|
|
|
};
|
|
|
|
|
2016-02-02 07:38:42 -08:00
|
|
|
kernelPatches = args.kernelPatches;
|
2016-01-19 17:19:16 -08:00
|
|
|
|
2015-11-19 05:08:24 -08:00
|
|
|
features.iwlwifi = true;
|
|
|
|
features.efiBootStub = true;
|
|
|
|
features.needsCifsUtils = true;
|
|
|
|
features.canDisableNetfilterConntrackHelpers = true;
|
|
|
|
features.netfilterRPFilter = true;
|
|
|
|
})
|