diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2012-08-18 07:25:25 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-09-01 14:58:27 +0200 |
commit | a54535551d7f37054c73c79b6f0417e7e244db89 (patch) | |
tree | 2fc508d301b66d4d163d94f51e89326b6133c95c | |
parent | 09bc3d04d95c7a2be965d4f173a5e2946ca903c3 (diff) | |
download | u-boot-imx-a54535551d7f37054c73c79b6f0417e7e244db89.zip u-boot-imx-a54535551d7f37054c73c79b6f0417e7e244db89.tar.gz u-boot-imx-a54535551d7f37054c73c79b6f0417e7e244db89.tar.bz2 |
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>
-rw-r--r-- | Makefile | 5 | ||||
-rw-r--r-- | arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd (renamed from arch/arm/cpu/arm926ejs/mxs/u-boot.bd) | 0 |
2 files changed, 4 insertions, 1 deletions
@@ -461,8 +461,11 @@ $(obj)u-boot.ais: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin cat $(obj)spl/u-boot-spl-pad.ais $(obj)u-boot.bin > \ $(obj)u-boot.ais +# Specify the target for use in elftosb call +ELFTOSB_TARGET-$(CONFIG_MX28) = imx28 + $(obj)u-boot.sb: $(obj)u-boot.bin $(obj)spl/u-boot-spl.bin - elftosb -zdf imx28 -c $(TOPDIR)/$(CPUDIR)/$(SOC)/u-boot.bd \ + elftosb -zdf $(ELFTOSB_TARGET-y) -c $(TOPDIR)/$(CPUDIR)/$(SOC)/u-boot-$(ELFTOSB_TARGET-y).bd \ -o $(obj)u-boot.sb # On x600 (SPEAr600) U-Boot is appended to U-Boot SPL. diff --git a/arch/arm/cpu/arm926ejs/mxs/u-boot.bd b/arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd index c60615a..c60615a 100644 --- a/arch/arm/cpu/arm926ejs/mxs/u-boot.bd +++ b/arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd |