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 {
|
2017-06-11 18:37:46 -07:00
|
|
|
version = "4.12-rc5";
|
|
|
|
modDirVersion = "4.12.0-rc5";
|
2017-05-14 19:03:14 -07:00
|
|
|
extraMeta.branch = "4.12";
|
2014-06-05 04:06:19 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-05-14 19:03:14 -07:00
|
|
|
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
|
2017-06-11 18:37:46 -07:00
|
|
|
sha256 = "0d3lpf429fqrf6i529y0pjdwnpq2v82agn3xhw4jwkriib9i425x";
|
2014-06-05 04:06:19 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
features.iwlwifi = true;
|
|
|
|
features.efiBootStub = true;
|
|
|
|
features.needsCifsUtils = 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 {}))
|