Most i.MX boards booting off eMMC or SD cards use raw U-Boot located at
69 kB offset from beginning of the device - create a recipe for such
image.
Signed-off-by: Lech Perczak <lech.perczak@gmail.com>
$(Build/imx-combined-image-clean)
endef
+
+define Build/imx-sdcard-raw-uboot
+ $(Build/imx-combined-image-prepare)
+
+ $(Build/imx-combined-image)
+ dd if=$(STAGING_DIR_IMAGE)/$(UBOOT)-SPL of=$@ bs=1024 seek=1 conv=notrunc
+ dd if=$(STAGING_DIR_IMAGE)/$(UBOOT)-u-boot-dtb.img of=$@ bs=1024 seek=69 conv=notrunc
+
+ $(Build/imx-combined-image-clean)
+endef