linux: 4.9-rc6 -> 4.9-rc7

This commit is contained in:
Tim Steinbach 2016-11-27 19:47:34 -05:00
parent 86ea3126bc
commit eecf76eaa2
No known key found for this signature in database
GPG key ID: 472BFCCA96BD0EDA
2 changed files with 6 additions and 4 deletions

View file

@ -367,7 +367,9 @@ with stdenv.lib;
${optionalString (versionAtLeast version "3.15" && versionOlder version "4.8") ''
MLX4_EN_VXLAN y
''}
MODVERSIONS y
${optionalString (versionOlder version "4.9") ''
MODVERSIONS y
''}
MOUSE_PS2_ELANTECH y # Elantech PS/2 protocol extension
MTRR_SANITIZER y
NET_FC y # Fibre Channel driver support

View file

@ -1,13 +1,13 @@
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
version = "4.9-rc6";
modDirVersion = "4.9.0-rc6";
version = "4.9-rc7";
modDirVersion = "4.9.0-rc7";
extraMeta.branch = "4.9";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz";
sha256 = "0pxf4gzg8qxlf0i83vybf8g22aj0jjbk6n63bh9nciqhbshilr1w";
sha256 = "0da5bf5cizvbn68d8pb5kyli3zkgsc8g61kn1b4d8gwvfxrb75hx";
};
features.iwlwifi = true;