U-Boot: Build for the Banana Pi board

I don't own this board, but someone on IRC reported this as working (and
anyway it's practically identical to ubootPcduino3Nano since they're both
Allwinner boards)
This commit is contained in:
Tuomas Tynkkynen 2015-12-25 20:31:43 +02:00
parent 95ed5766d6
commit f80a563461
2 changed files with 7 additions and 0 deletions

View file

@ -61,6 +61,12 @@ in rec {
filesToInstall = ["tools/dumpimage" "tools/mkenvimage" "tools/mkimage"];
};
ubootBananaPi = buildUBoot rec {
defconfig = "Bananapi_defconfig";
targetPlatforms = ["armv7l-linux"];
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
};
ubootJetsonTK1 = buildUBoot rec {
defconfig = "jetson-tk1_defconfig";
targetPlatforms = ["armv7l-linux"];

View file

@ -10576,6 +10576,7 @@ let
# Upstream U-Boots:
inherit (callPackage ../misc/uboot {})
buildUBoot
ubootBananaPi
ubootJetsonTK1
ubootPcduino3Nano
ubootRaspberryPi