Skip to content

Commit eecf76e

Browse files
committedNov 28, 2016
linux: 4.9-rc6 -> 4.9-rc7
1 parent 86ea312 commit eecf76e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed
 

Diff for: ‎pkgs/os-specific/linux/kernel/common-config.nix

+3-1
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,9 @@ with stdenv.lib;
367367
${optionalString (versionAtLeast version "3.15" && versionOlder version "4.8") ''
368368
MLX4_EN_VXLAN y
369369
''}
370-
MODVERSIONS y
370+
${optionalString (versionOlder version "4.9") ''
371+
MODVERSIONS y
372+
''}
371373
MOUSE_PS2_ELANTECH y # Elantech PS/2 protocol extension
372374
MTRR_SANITIZER y
373375
NET_FC y # Fibre Channel driver support

Diff for: ‎pkgs/os-specific/linux/kernel/linux-testing.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
22

33
import ./generic.nix (args // rec {
4-
version = "4.9-rc6";
5-
modDirVersion = "4.9.0-rc6";
4+
version = "4.9-rc7";
5+
modDirVersion = "4.9.0-rc7";
66
extraMeta.branch = "4.9";
77

88
src = fetchurl {
99
url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz";
10-
sha256 = "0pxf4gzg8qxlf0i83vybf8g22aj0jjbk6n63bh9nciqhbshilr1w";
10+
sha256 = "0da5bf5cizvbn68d8pb5kyli3zkgsc8g61kn1b4d8gwvfxrb75hx";
1111
};
1212

1313
features.iwlwifi = true;

0 commit comments

Comments
 (0)
Please sign in to comment.