2015-09-15 06:27:19 +02:00
|
|
|
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
|
2014-06-05 13:06:19 +02:00
|
|
|
|
|
|
|
import ./generic.nix (args // rec {
|
2017-05-15 04:03:14 +02:00
|
|
|
version = "4.12-rc1";
|
|
|
|
modDirVersion = "4.12.0-rc1";
|
|
|
|
extraMeta.branch = "4.12";
|
2014-06-05 13:06:19 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-05-15 04:03:14 +02:00
|
|
|
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
|
|
|
|
sha256 = "13xyiqn7xv8ryqrfsx8b18qm1zj0qkfz92mdh611nqhhdlw7gcpk";
|
2014-06-05 13:06:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
features.iwlwifi = true;
|
|
|
|
features.efiBootStub = true;
|
|
|
|
features.needsCifsUtils = true;
|
|
|
|
features.netfilterRPFilter = true;
|
2014-06-18 00:23:32 +02:00
|
|
|
|
|
|
|
# Should the testing kernels ever be built on Hydra?
|
|
|
|
extraMeta.hydraPlatforms = [];
|
|
|
|
|
2014-06-05 13:06:19 +02:00
|
|
|
} // (args.argsOverride or {}))
|