]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
arm, at91: generate boot.bin file for all atmel SoC
authorHeiko Schocher <hs@denx.de>
Thu, 30 Oct 2014 08:59:59 +0000 (09:59 +0100)
committerTom Rini <trini@ti.com>
Mon, 17 Nov 2014 13:47:16 +0000 (08:47 -0500)
generate the boot.bin file for all atmel SoC (arm920, arm926, armv7)

Signed-off-by: Heiko Schocher <hs@denx.de>
Reviewed-by: Andreas Bießmann <andreas.devel@googlemail.com>
Reviewed-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
[fix subject]
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
arch/arm/cpu/armv7/at91/config.mk
scripts/Makefile.spl

index 09eab709554486c02d789e3481a8e39914c30a29..db6030880fba2f456661bb74c70157cf88f027d9 100644 (file)
@@ -3,8 +3,6 @@
 #
 # SPDX-License-Identifier:     GPL-2.0+
 #
-ifdef CONFIG_SPL_BUILD
-ALL-y  += boot.bin
-else
+ifndef CONFIG_SPL_BUILD
 ALL-y  += u-boot.img
 endif
index 7afe437e62e11b1ed25f13c909fff68263957948..07db0bff8dfb364195bdf08529d1f30d342bdaee 100644 (file)
@@ -181,6 +181,10 @@ ALL-y      += $(obj)/sunxi-spl.bin
 endif
 endif
 
+ifeq ($(CONFIG_SYS_SOC),"at91")
+ALL-y  += boot.bin
+endif
+
 all:   $(ALL-y)
 
 ifdef CONFIG_SAMSUNG