aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOtavio Salvador2012-08-18 02:25:25 -0500
committerAlbert ARIBAUD2012-09-01 07:58:27 -0500
commita54535551d7f37054c73c79b6f0417e7e244db89 (patch)
tree2fc508d301b66d4d163d94f51e89326b6133c95c /Makefile
parent09bc3d04d95c7a2be965d4f173a5e2946ca903c3 (diff)
downloadu-boot-a54535551d7f37054c73c79b6f0417e7e244db89.tar.gz
u-boot-a54535551d7f37054c73c79b6f0417e7e244db89.tar.xz
u-boot-a54535551d7f37054c73c79b6f0417e7e244db89.zip
MX28: config: Allow different target generation in elftosb call
The elftosb call needs to use a target param specific for i.MX28. This patch allow for later addition of i.MX233. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 53dbdd378d..d6d8ab2b2b 100644
--- a/Makefile
+++ b/Makefile
@@ -461,8 +461,11 @@ $(obj)u-boot.ais: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
461 cat $(obj)spl/u-boot-spl-pad.ais $(obj)u-boot.bin > \ 461 cat $(obj)spl/u-boot-spl-pad.ais $(obj)u-boot.bin > \
462 $(obj)u-boot.ais 462 $(obj)u-boot.ais
463 463
464# Specify the target for use in elftosb call
465ELFTOSB_TARGET-$(CONFIG_MX28) = imx28
466
464$(obj)u-boot.sb: $(obj)u-boot.bin $(obj)spl/u-boot-spl.bin 467$(obj)u-boot.sb: $(obj)u-boot.bin $(obj)spl/u-boot-spl.bin
465 elftosb -zdf imx28 -c $(TOPDIR)/$(CPUDIR)/$(SOC)/u-boot.bd \ 468 elftosb -zdf $(ELFTOSB_TARGET-y) -c $(TOPDIR)/$(CPUDIR)/$(SOC)/u-boot-$(ELFTOSB_TARGET-y).bd \
466 -o $(obj)u-boot.sb 469 -o $(obj)u-boot.sb
467 470
468# On x600 (SPEAr600) U-Boot is appended to U-Boot SPL. 471# On x600 (SPEAr600) U-Boot is appended to U-Boot SPL.