U-Boot: Build for the Raspberry Pi 2 & 3

This commit is contained in:
Tuomas Tynkkynen 2016-04-23 14:44:19 +03:00 committed by Tuomas Tynkkynen
parent 428b51dd2f
commit 4108e0324e
2 changed files with 14 additions and 0 deletions

View file

@ -92,6 +92,18 @@ in rec {
filesToInstall = ["u-boot.bin"];
};
ubootRaspberryPi2 = buildUBoot rec {
defconfig = "rpi_2_defconfig";
targetPlatforms = ["armv7l-linux"];
filesToInstall = ["u-boot.bin"];
};
ubootRaspberryPi3 = buildUBoot rec {
defconfig = "rpi_3_32b_defconfig";
targetPlatforms = ["armv7l-linux"];
filesToInstall = ["u-boot.bin"];
};
# Intended only for QEMU's vexpress-a9 emulation target!
ubootVersatileExpressCA9 = buildUBoot rec {
defconfig = "vexpress_ca9x4_defconfig";

View file

@ -11405,6 +11405,8 @@ in
ubootJetsonTK1
ubootPcduino3Nano
ubootRaspberryPi
ubootRaspberryPi2
ubootRaspberryPi3
ubootVersatileExpressCA9
ubootWandboard
;