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-08-26 05:06:24 -07:00
|
|
|
version = "4.8-rc3";
|
|
|
|
modDirVersion = "4.8.0-rc3";
|
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-08-26 05:06:24 -07:00
|
|
|
sha256 = "08ir3w034qkalyi8mc6czgk9mcglm7wfazr2md94a8x98j69v38r";
|
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 {}))
|