summary refs log blame commit diff
path: root/pkgs/os-specific/linux/kernel/linux-testing.nix
blob: c70d6f79f38b9a96fc5bd4220c81f351f1e48347 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                   

                                   

                              
                           

                  
                                                                              
                                                                    






                                                      



                                                      
                               
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:

import ./generic.nix (args // rec {
  version = "4.4-rc8";
  modDirVersion = "4.4.0-rc8";
  extraMeta.branch = "4.4";

  src = fetchurl {
    url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz";
    sha256 = "0cwf80lryzhdajd3r97b33ym5njjpf5rbcbjzz7lja0w9xs1dvwj";
  };

  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 {}))