linux_hardkernel_4_14: restrict platforms to armv7l-linux

This commit is contained in:
Jörg Thalheim 2018-08-16 12:35:14 +01:00
parent 27cde7037c
commit 995d005d84

View File

@ -6,7 +6,7 @@ buildLinux (args // rec {
# modDirVersion needs to be x.y.z.
modDirVersion = "4.14.55";
# branchVersion needs to be x.y.
# branchVersion needs to be x.y.
extraMeta.branch = "4.14";
src = fetchFromGitHub {
@ -28,4 +28,6 @@ buildLinux (args // rec {
'' + (args.extraConfig or "");
extraMeta.platforms = [ "armv7l-linux" ];
} // (args.argsOverride or {}))