linux: 4.14.8 -> 4.14.9
Besides fixes for the recent BPF issues there is also a patch included that fixes booting on aarch64 (e.g. RPi3) ;-)
This commit is contained in:
@@ -234,7 +234,7 @@ let
|
||||
};
|
||||
in
|
||||
|
||||
assert stdenv.lib.versionAtLeast version "4.15" -> libelf != null;
|
||||
assert stdenv.lib.versionAtLeast version "4.14" -> libelf != null;
|
||||
assert stdenv.lib.versionAtLeast version "4.15" -> utillinux != null;
|
||||
stdenv.mkDerivation ((drvAttrs config stdenv.platform (kernelPatches ++ nativeKernelPatches) configfile) // {
|
||||
name = "linux-${version}";
|
||||
@@ -243,7 +243,7 @@ stdenv.mkDerivation ((drvAttrs config stdenv.platform (kernelPatches ++ nativeKe
|
||||
|
||||
nativeBuildInputs = [ perl bc nettools openssl gmp libmpc mpfr ]
|
||||
++ optional (stdenv.platform.kernelTarget == "uImage") ubootTools
|
||||
++ optional (stdenv.lib.versionAtLeast version "4.15") libelf
|
||||
++ optional (stdenv.lib.versionAtLeast version "4.14") libelf
|
||||
++ optional (stdenv.lib.versionAtLeast version "4.15") utillinux
|
||||
;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user