summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2016-10-04 10:10:36 -0400
committerShea Levy <shea@shealevy.com>2016-10-04 10:10:36 -0400
commite54313d183ff04d722241ad137367d9fd1f6af4c (patch)
tree58628e52da58626c8bb5ca5e8a1f2e1a5d419605 /pkgs
parent0e540d2113dc34bebf03fa35138796d526494bb0 (diff)
Revert "Revert "Linux 4.8""
Now featuring @aszlig's modinst_arg_list_too_long patch. This reverts commit 43bedb970d7518794f8e82ffffce23952c06083f. Fixes #19213
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-4.8.nix20
-rw-r--r--pkgs/top-level/all-packages.nix19
2 files changed, 37 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-4.8.nix b/pkgs/os-specific/linux/kernel/linux-4.8.nix
new file mode 100644
index 000000000000..5c2112686235
--- /dev/null
+++ b/pkgs/os-specific/linux/kernel/linux-4.8.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
+
+import ./generic.nix (args // rec {
+ version = "4.8";
+ modDirVersion = "4.8.0";
+ extraMeta.branch = "4.8";
+
+ src = fetchurl {
+ url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
+ sha256 = "3e9150065f193d3d94bcf46a1fe9f033c7ef7122ab71d75a7fb5a2f0c9a7e11a";
+ };
+
+ kernelPatches = args.kernelPatches;
+
+ features.iwlwifi = true;
+ features.efiBootStub = true;
+ features.needsCifsUtils = true;
+ features.canDisableNetfilterConntrackHelpers = true;
+ features.netfilterRPFilter = true;
+} // (args.argsOverride or {}))
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index b10ef4821284..836328a45e17 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -10762,7 +10762,21 @@ in
];
};
- /* See https://github.com/NixOS/nixpkgs/issues/19213 before adding Linux 4.8 */
+ linux_4_8 = callPackage ../os-specific/linux/kernel/linux-4.8.nix {
+ kernelPatches =
+ [ kernelPatches.bridge_stp_helper
+ # See pkgs/os-specific/linux/kernel/cpu-cgroup-v2-patches/README.md
+ # when adding a new linux version
+ # !!! 4.7 patch doesn't apply, 4.8 patch not up yet, will keep checking
+ # kernelPatches.cpu-cgroup-v2."4.7"
+ 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 = [
@@ -10921,7 +10935,7 @@ in
linux = linuxPackages.kernel;
# Update this when adding the newest kernel major version!
- linuxPackages_latest = linuxPackages_4_7;
+ linuxPackages_latest = linuxPackages_4_8;
linux_latest = linuxPackages_latest.kernel;
# Build the kernel modules for the some of the kernels.
@@ -10934,6 +10948,7 @@ in
linuxPackages_4_1 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_1 linuxPackages_4_1);
linuxPackages_4_4 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_4 linuxPackages_4_4);
linuxPackages_4_7 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_7 linuxPackages_4_7);
+ linuxPackages_4_8 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_8 linuxPackages_4_8);
# 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.