U-Boot: Fix ubootBananaPi & ubootPcduino3Nano by adding python2

Also enable parallel building.
This commit is contained in:
Tuomas Tynkkynen 2017-02-11 15:53:01 +02:00
parent 049a031e34
commit 20578372e1

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, bc, dtc }:
{ stdenv, fetchurl, bc, dtc, python2 }:
let
buildUBoot = { targetPlatforms
@ -17,7 +17,7 @@ let
sha256 = "1wpc51jm3zyibgcr78jng2yksqvrya76bxgsr4pcyjrsz5sm2hkc";
};
nativeBuildInputs = [ bc dtc ];
nativeBuildInputs = [ bc dtc python2 ];
hardeningDisable = [ "all" ];
@ -34,6 +34,7 @@ let
runHook postInstall
'';
enableParallelBuilding = true;
dontStrip = true;
crossAttrs = {