imx6: image: Split imx6-sdcard image for reusability
authorPetr Štetiar <[email protected]>
Fri, 23 Nov 2018 08:25:13 +0000 (09:25 +0100)
committerPetr Štetiar <[email protected]>
Mon, 8 Apr 2019 16:37:03 +0000 (18:37 +0200)
I'm going to reuse the imx6-sdcard image commands for building of Apalis
eMMC images.

Signed-off-by: Petr Štetiar <[email protected]>
target/linux/imx6/image/Makefile

index 9dd5b520a1f1c95530e3787d1583dc8ae58b1817..fa10b756a174911583308a7efa3e441baf1c8581 100644 (file)
@@ -58,11 +58,16 @@ define Build/boot-scr
        $(BIN_DIR)/boot.scr
 endef
 
-define Build/imx6-sdcard
+define Build/imx6-combined-image-prepare
        rm -rf [email protected]
        mkdir -p [email protected]
+endef
 
-       $(CP) $(STAGING_DIR_IMAGE)/$(UBOOT)-u-boot.img [email protected]/u-boot.img
+define Build/imx6-combined-image-clean
+       rm -rf [email protected] [email protected]
+endef
+
+define Build/imx6-combined-image
        $(CP) $(IMAGE_KERNEL) [email protected]/uImage
 
        $(foreach dts,$(DEVICE_DTS), \
@@ -84,10 +89,18 @@ define Build/imx6-sdcard
                $(CONFIG_TARGET_ROOTFS_PARTSIZE) \
                [email protected] \
                1024
+endef
 
+define Build/imx6-sdcard
+       $(Build/imx6-combined-image-prepare)
+
+       $(CP) $(STAGING_DIR_IMAGE)/$(UBOOT)-u-boot.img [email protected]/u-boot.img
+       $(Build/imx6-combined-image)
        dd if=$(STAGING_DIR_IMAGE)/$(UBOOT)-SPL of=$@ bs=1024 seek=1 conv=notrunc
 
-       rm -rf [email protected] [email protected]
+       $(Build/imx6-combined-image-clean)
+endef
+
 endef
 
 #################################################