summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--images/Makefile3
-rw-r--r--images/Makefile.imx6
2 files changed, 8 insertions, 1 deletions
diff --git a/images/Makefile b/images/Makefile
index 2422969b55..da9cc8d396 100644
--- a/images/Makefile
+++ b/images/Makefile
@@ -142,5 +142,6 @@ $(flash-list): $(image-y-path)
clean-files := *.pbl *.pblb *.pblx *.map start_*.imximg *.img barebox.z start_*.kwbimg \
start_*.kwbuartimg *.socfpgaimg *.mlo *.t20img *.t20img.cfg *.t30img \
- *.t30img.cfg *.t124img *.t124img.cfg *.mlospi *.mlo *.mxsbs *.mxssd
+ *.t30img.cfg *.t124img *.t124img.cfg *.mlospi *.mlo *.mxsbs *.mxssd \
+ start_*.simximg start_*.usimximg
clean-files += pbl.lds
diff --git a/images/Makefile.imx b/images/Makefile.imx
index e581dbe103..4ab2dcb57f 100644
--- a/images/Makefile.imx
+++ b/images/Makefile.imx
@@ -14,6 +14,12 @@ $(obj)/%.imximg: $(obj)/% FORCE
$(call if_changed,imx_image,$(CFG_$(@F)),)
endif
+$(obj)/%.simximg: $(obj)/% FORCE
+ $(call if_changed,imx_image,$(CFG_$(patsubst %.simximg,%.imximg,$(@F))),-s)
+
+$(obj)/%.usimximg: $(obj)/% FORCE
+ $(call if_changed,imx_image,$(CFG_$(patsubst %.usimximg,%.imximg,$(@F))),-s -u)
+
quiet_cmd_imx_sram_img ?= IMX-SRAM-IMG $@
cmd_imx_sram_img ?= cat $(obj)/$(patsubst %.imx-sram-img,%.pblb,$(2)) > $@; \
$(call size_append, $(obj)/barebox.z) >> $@; \