mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
8ac1765e28
Using linux-testing for a bunch of machines, I'd actually expect it to be more recent than the latest stable, but until now it actually was behind. Since torvalds/linux@464ed18ebd, the option PM_RUNTIME doesn't exist anymore, so we need to remove it from our common config. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
23 lines
636 B
Nix
23 lines
636 B
Nix
{ stdenv, fetchurl, ... } @ args:
|
|
|
|
import ./generic.nix (args // rec {
|
|
version = "3.19-rc5";
|
|
modDirVersion = "3.19.0-rc5";
|
|
extraMeta.branch = "3.19";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/kernel/v3.x/testing/linux-${version}.tar.xz";
|
|
sha256 = "1n1bzdczqi9lqb6sahm1g9f59v1h6vp6r4skyi40dk3v2xacb0nw";
|
|
};
|
|
|
|
features.iwlwifi = true;
|
|
features.efiBootStub = true;
|
|
features.needsCifsUtils = true;
|
|
features.canDisableNetfilterConntrackHelpers = true;
|
|
features.netfilterRPFilter = true;
|
|
|
|
# Should the testing kernels ever be built on Hydra?
|
|
extraMeta.hydraPlatforms = [];
|
|
|
|
} // (args.argsOverride or {}))
|