linux: 4.11.6 -> 4.11.7

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

View File

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

View File

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