summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-02-10 13:45:20 +0100
committerVladimír Čunát <vcunat@gmail.com>2015-02-10 13:45:20 +0100
commit57f2d329acec8265cf5ab6fc5c3fb7752e4ac5c1 (patch)
treeb83addf1b65e28dd6fee0463509a18661e71b72f /pkgs/top-level
parent12834a8500619b247a52594ea94b0a1a423ad6d9 (diff)
downloadnixlib-57f2d329acec8265cf5ab6fc5c3fb7752e4ac5c1.tar
nixlib-57f2d329acec8265cf5ab6fc5c3fb7752e4ac5c1.tar.gz
nixlib-57f2d329acec8265cf5ab6fc5c3fb7752e4ac5c1.tar.bz2
nixlib-57f2d329acec8265cf5ab6fc5c3fb7752e4ac5c1.tar.lz
nixlib-57f2d329acec8265cf5ab6fc5c3fb7752e4ac5c1.tar.xz
nixlib-57f2d329acec8265cf5ab6fc5c3fb7752e4ac5c1.tar.zst
nixlib-57f2d329acec8265cf5ab6fc5c3fb7752e4ac5c1.zip
linux_3_{10,12,14}: fix upstream regression, fixes #6231
Some modules wouldn't load crc32c dependency due to module renaming.
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 7ed94373a12b..80ad6e13576c 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -8623,7 +8623,7 @@ let
 
   linux_3_10 = makeOverridable (import ../os-specific/linux/kernel/linux-3.10.nix) {
     inherit fetchurl stdenv perl buildLinux;
-    kernelPatches = [ kernelPatches.bridge_stp_helper ]
+    kernelPatches = [ kernelPatches.bridge_stp_helper kernelPatches.crc_regression ]
       ++ lib.optionals ((platform.kernelArch or null) == "mips")
       [ kernelPatches.mips_fpureg_emu
         kernelPatches.mips_fpu_sigill
@@ -8633,7 +8633,7 @@ let
 
   linux_3_12 = makeOverridable (import ../os-specific/linux/kernel/linux-3.12.nix) {
     inherit fetchurl stdenv perl buildLinux;
-    kernelPatches = [ kernelPatches.bridge_stp_helper ]
+    kernelPatches = [ kernelPatches.bridge_stp_helper kernelPatches.crc_regression ]
       ++ lib.optionals ((platform.kernelArch or null) == "mips")
       [ kernelPatches.mips_fpureg_emu
         kernelPatches.mips_fpu_sigill
@@ -8643,7 +8643,7 @@ let
 
   linux_3_14 = makeOverridable (import ../os-specific/linux/kernel/linux-3.14.nix) {
     inherit fetchurl stdenv perl buildLinux;
-    kernelPatches = [ kernelPatches.bridge_stp_helper ]
+    kernelPatches = [ kernelPatches.bridge_stp_helper kernelPatches.crc_regression ]
       ++ lib.optionals ((platform.kernelArch or null) == "mips")
       [ kernelPatches.mips_fpureg_emu
         kernelPatches.mips_fpu_sigill