about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2017-09-03 19:41:44 -0400
committerTim Steinbach <tim@nequissimus.com>2017-09-03 19:41:44 -0400
commitc1e2a0b6f447ed6cf469b5e7fe501e4d21325570 (patch)
treeed288bf7295813212954bc62cdaed28b68ef7c89 /pkgs
parentb41d33319c8da14a48114dd74e00f20d8408fec0 (diff)
downloadnixlib-c1e2a0b6f447ed6cf469b5e7fe501e4d21325570.tar
nixlib-c1e2a0b6f447ed6cf469b5e7fe501e4d21325570.tar.gz
nixlib-c1e2a0b6f447ed6cf469b5e7fe501e4d21325570.tar.bz2
nixlib-c1e2a0b6f447ed6cf469b5e7fe501e4d21325570.tar.lz
nixlib-c1e2a0b6f447ed6cf469b5e7fe501e4d21325570.tar.xz
nixlib-c1e2a0b6f447ed6cf469b5e7fe501e4d21325570.tar.zst
nixlib-c1e2a0b6f447ed6cf469b5e7fe501e4d21325570.zip
linux: Add 4.13
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-4.13.nix19
-rw-r--r--pkgs/top-level/all-packages.nix19
2 files changed, 37 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-4.13.nix b/pkgs/os-specific/linux/kernel/linux-4.13.nix
new file mode 100644
index 000000000000..4c7039b2165c
--- /dev/null
+++ b/pkgs/os-specific/linux/kernel/linux-4.13.nix
@@ -0,0 +1,19 @@
+{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
+
+import ./generic.nix (args // rec {
+  version = "4.13";
+  modDirVersion = "4.13.0";
+  extraMeta.branch = "4.13";
+
+  src = fetchurl {
+    url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
+    sha256 = "0b4slkcq9pxxwp5sfbzffplsf8p0a4lksflpbfr3xn9sdh3ddcrd";
+  };
+
+  kernelPatches = args.kernelPatches;
+
+  features.iwlwifi = true;
+  features.efiBootStub = true;
+  features.needsCifsUtils = true;
+  features.netfilterRPFilter = true;
+} // (args.argsOverride or {}))
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index f2f342294929..fa429230aa30 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -12213,6 +12213,22 @@ with pkgs;
       ];
   };
 
+  linux_4_13 = callPackage ../os-specific/linux/kernel/linux-4.13.nix {
+    kernelPatches =
+      [ kernelPatches.bridge_stp_helper
+        kernelPatches.p9_fixes
+        # See pkgs/os-specific/linux/kernel/cpu-cgroup-v2-patches/README.md
+        # when adding a new linux version
+        kernelPatches.cpu-cgroup-v2."4.11"
+        kernelPatches.modinst_arg_list_too_long
+      ]
+      ++ lib.optionals ((platform.kernelArch or null) == "mips")
+      [ kernelPatches.mips_fpureg_emu
+        kernelPatches.mips_fpu_sigill
+        kernelPatches.mips_ext3_n32
+      ];
+  };
+
   linux_testing = callPackage ../os-specific/linux/kernel/linux-testing.nix {
     kernelPatches = [
       kernelPatches.bridge_stp_helper
@@ -12406,7 +12422,7 @@ with pkgs;
   linux = linuxPackages.kernel;
 
   # Update this when adding the newest kernel major version!
-  linuxPackages_latest = linuxPackages_4_12;
+  linuxPackages_latest = linuxPackages_4_13;
   linux_latest = linuxPackages_latest.kernel;
 
   # Build the kernel modules for the some of the kernels.
@@ -12415,6 +12431,7 @@ with pkgs;
   linuxPackages_rpi = linuxPackagesFor pkgs.linux_rpi;
   linuxPackages_4_9 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_9);
   linuxPackages_4_12 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_12);
+  linuxPackages_4_13 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_13);
   # Don't forget to update linuxPackages_latest!
 
   # Intentionally lacks recurseIntoAttrs, as -rc kernels will quite likely break out-of-tree modules and cause failed Hydra builds.