linux_4_14: 4.14.12 -> 4.14.13

In terms of spectre/meltdown this version also supports loading of amd
fam17h firmware.
This commit is contained in:
Andreas Rammhold 2018-01-10 13:35:17 +01:00
parent c72a05b88d
commit cf8021e73a
No known key found for this signature in database
GPG key ID: E432E410B5E48C86

View file

@ -3,7 +3,7 @@
with stdenv.lib;
import ./generic.nix (args // rec {
version = "4.14.12";
version = "4.14.13";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = concatStrings (intersperse "." (take 3 (splitString "." "${version}.0")));
@ -13,6 +13,6 @@ import ./generic.nix (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
sha256 = "1bsn73h3ilf7msyiqm5ny2zdj30b9r7k9sc8i03w3iggh3agf236";
sha256 = "0wjpwhrnnvf6l3zpkkxk34dl722w9yp8j3vnh0xzi3hgb8dnvd2a";
};
} // (args.argsOverride or {}))