2015-09-15 05:27:19 +01:00
|
|
|
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
|
2014-06-05 12:06:19 +01:00
|
|
|
|
|
|
|
import ./generic.nix (args // rec {
|
2017-01-16 09:40:45 +00:00
|
|
|
version = "4.10-rc4";
|
|
|
|
modDirVersion = "4.10.0-rc4";
|
2016-12-26 23:35:10 +00:00
|
|
|
extraMeta.branch = "4.10";
|
2014-06-05 12:06:19 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-02-27 22:04:20 +00:00
|
|
|
url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz";
|
2017-01-16 09:40:45 +00:00
|
|
|
sha256 = "0rsi9iw8ag3lcy4yjrr6ipf7zpm3f206anv5xzkn2mi1r4vfndvp";
|
2014-06-05 12:06:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
features.iwlwifi = true;
|
|
|
|
features.efiBootStub = true;
|
|
|
|
features.needsCifsUtils = true;
|
|
|
|
features.netfilterRPFilter = true;
|
2014-06-17 23:23:32 +01:00
|
|
|
|
|
|
|
# Should the testing kernels ever be built on Hydra?
|
|
|
|
extraMeta.hydraPlatforms = [];
|
|
|
|
|
2014-06-05 12:06:19 +01:00
|
|
|
} // (args.argsOverride or {}))
|