U-Boot: 2017.01 -> 2017,03

This commit is contained in:
Tuomas Tynkkynen 2017-03-17 22:17:02 +02:00
parent 08c87eed00
commit 49f1abec15

View file

@ -10,17 +10,21 @@ let
stdenv.mkDerivation (rec {
name = "uboot-${defconfig}-${version}";
version = "2017.01";
version = "2017.03";
src = fetchurl {
url = "ftp://ftp.denx.de/pub/u-boot/u-boot-${version}.tar.bz2";
sha256 = "1wpc51jm3zyibgcr78jng2yksqvrya76bxgsr4pcyjrsz5sm2hkc";
sha256 = "0gqihplap05dlpwdb971wsqyv01nz2vabwq5g5649gr5jczsyjzm";
};
nativeBuildInputs = [ bc dtc python2 ];
hardeningDisable = [ "all" ];
postPatch = ''
patchShebangs tools
'';
configurePhase = ''
make ${defconfig}
'';