summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile3
-rw-r--r--arch/arm/config.mk5
-rw-r--r--arch/arm/imx-common/Makefile9
3 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index c91c10ed3a..63d79ba560 100644
--- a/Makefile
+++ b/Makefile
@@ -753,6 +753,9 @@ u-boot-dtb.bin: u-boot.bin dts/dt.dtb FORCE
%.imx: %.bin
$(Q)$(MAKE) $(build)=arch/arm/imx-common $@
+u-boot-nand.imx: u-boot.bin
+ $(Q)$(MAKE) $(build)=arch/arm/imx-common $@
+
quiet_cmd_copy = COPY $@
cmd_copy = cp $< $@
diff --git a/arch/arm/config.mk b/arch/arm/config.mk
index 66ecc2ee4d..5f7cd3a610 100644
--- a/arch/arm/config.mk
+++ b/arch/arm/config.mk
@@ -125,7 +125,12 @@ else
ifeq ($(CONFIG_OF_SEPARATE),y)
ALL-y += u-boot-dtb.imx
else
+ifeq ($(CONFIG_IMX_NAND),y)
+# u-boot-nand.imx builds u-boot.imx as well
+ALL-y += u-boot-nand.imx
+else
ALL-y += u-boot.imx
endif
endif
endif
+endif
diff --git a/arch/arm/imx-common/Makefile b/arch/arm/imx-common/Makefile
index 770054096f..d6fdd383ca 100644
--- a/arch/arm/imx-common/Makefile
+++ b/arch/arm/imx-common/Makefile
@@ -43,6 +43,15 @@ 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_IMX_NAND),y)
+quiet_cmd_u-boot-nand_imx = GEN $@
+cmd_u-boot-nand_imx = (dd bs=1024 count=1 if=/dev/zero 2>/dev/null) | \
+ cat - $< > $@
+
+u-boot-nand.imx: u-boot.imx $(IMX_CONFIG) FORCE
+ $(call if_changed,u-boot-nand_imx)
+endif
+
ifeq ($(CONFIG_OF_SEPARATE),y)
MKIMAGEFLAGS_u-boot-dtb.imx = -n $(filter-out $< $(PHONY),$^) -T imximage \
-e $(CONFIG_SYS_TEXT_BASE)