nixpkgs/pkgs/os-specific/linux/kernel/linux-4.14.nix
Andreas Rammhold cf8021e73a
linux_4_14: 4.14.12 -> 4.14.13
In terms of spectre/meltdown this version also supports loading of amd
fam17h firmware.
2018-01-10 13:50:45 +01:00

19 lines
632 B
Nix

{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
with stdenv.lib;
import ./generic.nix (args // rec {
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")));
# branchVersion needs to be x.y
extraMeta.branch = concatStrings (intersperse "." (take 2 (splitString "." version)));
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
sha256 = "0wjpwhrnnvf6l3zpkkxk34dl722w9yp8j3vnh0xzi3hgb8dnvd2a";
};
} // (args.argsOverride or {}))