diff options
author | Stefano Babic <sbabic@denx.de> | 2014-03-31 09:50:35 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2014-04-02 10:45:35 +0200 |
commit | e64348f5eb4aef7e119a46b97bdba2cc9cb15fc5 (patch) | |
tree | c09c153778e922eda568f68a78a8dac0a4589cb5 /arch/arm/imx-common | |
parent | bb2637be096b842ee25b96c7cfe4f26e55fb7026 (diff) | |
download | u-boot-imx-e64348f5eb4aef7e119a46b97bdba2cc9cb15fc5.zip u-boot-imx-e64348f5eb4aef7e119a46b97bdba2cc9cb15fc5.tar.gz u-boot-imx-e64348f5eb4aef7e119a46b97bdba2cc9cb15fc5.tar.bz2 |
imx: add rules for U-Boot DTB support
Signed-off-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'arch/arm/imx-common')
-rw-r--r-- | arch/arm/imx-common/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/imx-common/Makefile b/arch/arm/imx-common/Makefile index 16809fe..025cfed 100644 --- a/arch/arm/imx-common/Makefile +++ b/arch/arm/imx-common/Makefile @@ -42,6 +42,14 @@ MKIMAGEFLAGS_u-boot.imx = -n $(filter-out $< $(PHONY),$^) -T imximage \ u-boot.imx: u-boot.bin $(IMX_CONFIG) FORCE $(call if_changed,mkimage) +ifeq ($(CONFIG_OF_SEPARATE),y) +MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $< $(PHONY),$^) -T imximage \ + -e $(CONFIG_SYS_TEXT_BASE) + +u-boot-dtb.imx: u-boot-dtb.bin $(IMX_CONFIG) FORCE + $(call if_changed,mkimage) +endif + MKIMAGEFLAGS_SPL = -n $(filter-out $< $(PHONY),$^) -T imximage \ -e $(CONFIG_SPL_TEXT_BASE) |