From 207a0af06a22f5c209b58477a2bcd27069b0d1cc Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Mon, 1 May 2017 19:04:45 -0400 Subject: Add linux 4.11 --- pkgs/os-specific/linux/kernel/linux-4.11.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pkgs/os-specific/linux/kernel/linux-4.11.nix (limited to 'pkgs/os-specific/linux') diff --git a/pkgs/os-specific/linux/kernel/linux-4.11.nix b/pkgs/os-specific/linux/kernel/linux-4.11.nix new file mode 100644 index 000000000000..ee96cbee6cb5 --- /dev/null +++ b/pkgs/os-specific/linux/kernel/linux-4.11.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, perl, buildLinux, ... } @ args: + +import ./generic.nix (args // rec { + version = "4.11"; + extraMeta.branch = "4.11"; + modDirVersion = "4.11.0"; + + src = fetchurl { + url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; + sha256 = "b67ecafd0a42b3383bf4d82f0850cbff92a7e72a215a6d02f42ddbafcf42a7d6"; + }; + + kernelPatches = args.kernelPatches; + + features.iwlwifi = true; + features.efiBootStub = true; + features.needsCifsUtils = true; + features.netfilterRPFilter = true; +} // (args.argsOverride or {})) -- cgit 1.4.1