2015-09-14 21:27:19 -07:00
|
|
|
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
|
2014-06-05 04:06:19 -07:00
|
|
|
|
|
|
|
import ./generic.nix (args // rec {
|
2016-07-11 08:53:41 -07:00
|
|
|
version = "4.7-rc7";
|
|
|
|
modDirVersion = "4.7.0-rc7";
|
2016-07-04 01:40:28 -07:00
|
|
|
extraMeta.branch = "4.7";
|
2014-06-05 04:06:19 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-02-27 14:04:20 -08:00
|
|
|
url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz";
|
2016-07-11 08:53:41 -07:00
|
|
|
sha256 = "11c87rhxlrmag9hhg1m8zfff0d52yrzvhyjj9dxfa3nmxj4sfbb7";
|
2014-06-05 04:06:19 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
features.iwlwifi = true;
|
|
|
|
features.efiBootStub = true;
|
|
|
|
features.needsCifsUtils = true;
|
|
|
|
features.canDisableNetfilterConntrackHelpers = true;
|
|
|
|
features.netfilterRPFilter = true;
|
2014-06-17 15:23:32 -07:00
|
|
|
|
|
|
|
# Should the testing kernels ever be built on Hydra?
|
|
|
|
extraMeta.hydraPlatforms = [];
|
|
|
|
|
2014-06-05 04:06:19 -07:00
|
|
|
} // (args.argsOverride or {}))
|