diff options
author | Troy Kisky <troy.kisky@boundarydevices.com> | 2013-01-18 16:14:24 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2013-01-22 10:20:13 +0100 |
commit | 71a988aa630f013b8425789351971dc4e202593d (patch) | |
tree | 88f007e7daecf39e11381e326faaddad50ca4b2d /spl | |
parent | 00239977097001c1c1331a50a03708faba46e8f4 (diff) | |
download | u-boot-midas-71a988aa630f013b8425789351971dc4e202593d.tar.gz u-boot-midas-71a988aa630f013b8425789351971dc4e202593d.tar.bz2 u-boot-midas-71a988aa630f013b8425789351971dc4e202593d.zip |
imximage.cfg: run files through C preprocessor
The '#' used as comments in the files cause the preprocessor
trouble, so change to /* */.
The mkimage command which uses this preprocessor output
was moved to arch/arm/imx-common/Makefile
.gitignore was updated to ignore .cfgtmp files.
Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
Diffstat (limited to 'spl')
-rw-r--r-- | spl/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/spl/Makefile b/spl/Makefile index 6dbb1055b6..d8efad0290 100644 --- a/spl/Makefile +++ b/spl/Makefile @@ -141,11 +141,8 @@ $(OBJTREE)/MLO.byteswap: $(obj)u-boot-spl.bin $(OBJTREE)/tools/mkimage -T omapimage -n byteswap \ -a $(CONFIG_SPL_TEXT_BASE) -d $< $@ -ifneq ($(CONFIG_IMX_CONFIG),) -$(OBJTREE)/SPL: $(obj)u-boot-spl.bin - $(OBJTREE)/tools/mkimage -n $(SRCTREE)/$(CONFIG_IMX_CONFIG) -T imximage \ - -e $(CONFIG_SPL_TEXT_BASE) -d $< $@ -endif +$(OBJTREE)/SPL : $(obj)u-boot-spl.bin depend + $(MAKE) -C $(SRCTREE)/arch/arm/imx-common $@ ALL-y += $(obj)u-boot-spl.bin |