linux: 4.9.33 -> 4.9.34

This commit is contained in:
Tim Steinbach 2017-06-24 11:22:56 -04:00
parent 3a68f0bb78
commit b06cb59fc1
No known key found for this signature in database
GPG key ID: 472BFCCA96BD0EDA
2 changed files with 3 additions and 3 deletions

View file

@ -593,7 +593,7 @@ with stdenv.lib;
FW_LOADER_USER_HELPER_FALLBACK? n
# Disable various self-test modules that have no use in a production system
${optionalString (versionOlder version "4.11") ''
${optionalString (versionOlder version "4.9") ''
ARM_KPROBES_TEST? n
''}

View file

@ -1,12 +1,12 @@
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
version = "4.9.33";
version = "4.9.34";
extraMeta.branch = "4.9";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
sha256 = "0d2cai3bq1bkmisbsl6l27di765xmzn3lscwray30ldbssijpjpm";
sha256 = "0ij55aqdhqf92a79n9xqw0p32bsksw4zxpn2zhcylhgsn78mkl8k";
};
kernelPatches = args.kernelPatches;