uboot: Fix build

This commit is contained in:
Tuomas Tynkkynen 2016-09-08 02:37:11 +03:00
parent 4af2d12ec2
commit 1517c80462

View file

@ -12,13 +12,15 @@ let
name = "uboot-${defconfig}-${version}";
version = "2016.05";
nativeBuildInputs = [ bc dtc ];
src = fetchurl {
url = "ftp://ftp.denx.de/pub/u-boot/u-boot-${version}.tar.bz2";
sha256 = "0wdivib8kbm17qr6r7n7wyzg5vnwpagvwk5m0z80rbssc5sj5l47";
};
nativeBuildInputs = [ bc dtc ];
hardeningDisable = [ "all" ];
configurePhase = ''
make ${defconfig}
'';