diff options
author | Tom Rini | 2012-10-16 13:06:06 +0000 |
---|---|---|
committer | Tom Rini | 2012-10-25 11:30:50 -0700 |
commit | 79b9ebb7007cd99409ff506c1bf57b2ab0975243 (patch) | |
tree | 50be078e8075e3472788ad1446f7cbeff64cdac3 /spl/Makefile | |
parent | 22cbeed454087ffa6ae6e56880bfff125497619b (diff) |
omapimage: Add support for byteswapped SPI images
Add MLO.byteswap as a target to spl/Makefile and un-guard the first MLO
rule so we don't have to duplicate it.
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'spl/Makefile')
-rw-r--r-- | spl/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/spl/Makefile b/spl/Makefile index 92267d6deaa..7b52bd10702 100644 --- a/spl/Makefile +++ b/spl/Makefile @@ -112,16 +112,13 @@ LDPPFLAGS += \ $(shell $(LD) --version | \ sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p') -ifdef CONFIG_OMAP $(OBJTREE)/MLO: $(obj)u-boot-spl.bin $(OBJTREE)/tools/mkimage -T omapimage \ -a $(CONFIG_SPL_TEXT_BASE) -d $< $@ -endif -ifdef CONFIG_AM33XX -$(OBJTREE)/MLO: $(obj)u-boot-spl.bin - $(OBJTREE)/tools/mkimage -T omapimage \ + +$(OBJTREE)/MLO.byteswap: $(obj)u-boot-spl.bin + $(OBJTREE)/tools/mkimage -T omapimage -n byteswap \ -a $(CONFIG_SPL_TEXT_BASE) -d $< $@ -endif ALL-y += $(obj)u-boot-spl.bin |