diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-02-24 02:12:21 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-02-25 16:01:29 (GMT) |
commit | 630d23455bf01ef92dba41589fdb338984717f2f (patch) | |
tree | 7742b710c5a9e6ed701e786b029c73ae807eafb8 /Makefile | |
parent | 4e0c8abcdd8748b20e1652bd35351d077baad2f2 (diff) | |
download | u-boot-fsl-qoriq-630d23455bf01ef92dba41589fdb338984717f2f.tar.xz |
kbuild: refactor more IMX image rules
This commit avoids generating ./SPL twice.
- Fist time descending to spl/
- Second time as a prerequisite of u-boot-with-spl.imx,
u-boot-with-nand-spl.imx.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -839,7 +839,10 @@ OBJCOPYFLAGS_u-boot-with-tpl.bin = -I binary -O binary \ tpl/u-boot-with-tpl.bin: tpl/u-boot-tpl.bin u-boot.bin FORCE $(call if_changed,pad_cat) -u-boot-with-spl.imx u-boot-with-nand-spl.imx: spl/u-boot-spl.bin u-boot.bin +SPL: spl/u-boot-spl.bin FORCE + $(Q)$(MAKE) $(build)=arch/arm/imx-common $@ + +u-boot-with-spl.imx u-boot-with-nand-spl.imx: SPL u-boot.bin FORCE $(Q)$(MAKE) $(build)=arch/arm/imx-common $@ MKIMAGEFLAGS_u-boot.ubl = -n $(UBL_CONFIG) -T ublimage -e $(CONFIG_SYS_TEXT_BASE) |