The wic image can be used to boot kernel/dtb/rootfs from an SD card. U-Boot gets booted from the on module NAND, the image from the prepared SD card can be started with 'run sdboot'.
zcat XXX.rootfs.wic.gz | dd of=/dev/sdX bs=1M Signed-off-by: Max Krummenacher <[email protected]> --- conf/machine/colibri-imx7.conf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/conf/machine/colibri-imx7.conf b/conf/machine/colibri-imx7.conf index 0e6105b..d47fe84 100644 --- a/conf/machine/colibri-imx7.conf +++ b/conf/machine/colibri-imx7.conf @@ -26,7 +26,10 @@ UBOOT_BINARY = "u-boot-nand.imx" UBOOT_MAKE_TARGET = "u-boot-nand.imx" UBOOT_MACHINE ?= "colibri_imx7_defconfig" -IMAGE_FSTYPES = "sdcard.gz tar.xz ubifs" +IMAGE_FSTYPES = "wic.gz tar.xz" +# wic support +WKS_FILE = "sdimage-bootpart.wks" +WIC_CREATE_EXTRA_ARGS_append = " --no-fstab-update" # Enable free --space-fixup (-F) by default, this allows DFU updates MKUBIFS_ARGS = " -c 8112 -e 124KiB -m 2KiB -F" -- 2.9.4 -- _______________________________________________ meta-freescale mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-freescale
