Build the imx-image-core for the FRDM-IMX93 board, per UG10164 this was stated as the image for Wayland. The output in the deploy/images/imx93frdm show this
rw-r--r-- 2 build build 1099 May 16 06:52 CRT.crt
-rw-r--r-- 2 build build 813 May 16 06:52 CRT.esl
-rw-r--r-- 2 build build 1704 May 16 06:52 CRT.key
-rw-r--r-- 2 build build 44161 May 16 06:52 bl31-imx93.bin
-rw-r--r-- 2 build build 48449 May 16 06:52 bl31-imx93.bin-optee
drwxr-xr-x 2 build build 4096 May 16 06:52 imx-boot-tools
-rw-r--r-- 2 build build 1660 May 16 06:52 lpddr4_dmem_1d_v202201.bin
-rw-r--r-- 2 build build 1408 May 16 06:52 lpddr4_dmem_2d_v202201.bin
-rw-r--r-- 2 build build 32428 May 16 06:52 lpddr4_imem_1d_v202201.bin
-rw-r--r-- 2 build build 25668 May 16 06:52 lpddr4_imem_2d_v202201.bin
-rw-r--r-- 2 build build 105792 May 16 06:52 mx93a1-ahab-container.img
drwxr-xr-x 3 build build 4096 May 16 06:52 optee
lrwxrwxrwx 2 build build 21 May 16 06:52 tee.bin -> optee/tee.mx93evk.bin
lrwxrwxrwx 2 build build 46 May 16 06:52 u-boot-imx-initial-env-imx93frdm-sd -> u-boot-imx-initial-env-imx93frdm-sd-2024.04-r0
-rw-r--r-- 2 build build 6948 May 16 06:52 u-boot-imx-initial-env-imx93frdm-sd-2024.04-r0
lrwxrwxrwx 2 build build 46 May 16 06:52 u-boot-imx-initial-env-sd -> u-boot-imx-initial-env-imx93frdm-sd-2024.04-r0
lrwxrwxrwx 2 build build 24 May 16 06:52 u-boot-imx93frdm.bin -> u-boot-sd-2024.04-r0.bin
lrwxrwxrwx 2 build build 24 May 16 06:52 u-boot-imx93frdm.bin-sd -> u-boot-sd-2024.04-r0.bin
-rw-r--r-- 2 build build 1155568 May 16 06:52 u-boot-sd-2024.04-r0.bin
lrwxrwxrwx 2 build build 28 May 16 06:52 u-boot-spl.bin -> u-boot-spl.bin-sd-2024.04-r0
lrwxrwxrwx 2 build build 28 May 16 06:52 u-boot-spl.bin-imx93frdm -> u-boot-spl.bin-sd-2024.04-r0
lrwxrwxrwx 2 build build 28 May 16 06:52 u-boot-spl.bin-imx93frdm-sd -> u-boot-spl.bin-sd-2024.04-r0
lrwxrwxrwx 2 build build 28 May 16 06:52 u-boot-spl.bin-sd -> u-boot-spl.bin-sd-2024.04-r0
-rw-r--r-- 2 build build 138854 May 16 06:52 u-boot-spl.bin-sd-2024.04-r0
lrwxrwxrwx 2 build build 24 May 16 06:52 u-boot.bin -> u-boot-sd-2024.04-r0.bin
lrwxrwxrwx 2 build build 24 May 16 06:52 u-boot.bin-sd -> u-boot-sd-2024.04-r0.bin
There aren't any rootfs not partition images files
How to go from here is build an complete image for SD or EMMC ?
Thanks, What I want was just the image or rootfs only. is it possible to extract the seperate images from the wic file ?
Hello,
Each image build creates a U-Boot, a kernel, and an image type based on the IMAGE_FSTYPES defined in the machine configuration file. Most machine configurations provide an SD card image (.wic) and a rootfs image (.tar). The SD card image contains a partitioned image (with U-Boot, kernel, rootfs, etc.) suitable for booting the corresponding hardware.
An SD card image file .wic contains a partitioned image (with U-Boot, kernel, rootfs, etc.) suitable for booting the corresponding hardware. To flash an SD card image, run the following command:
zstdcat <image_name>.wic.zst | sudo dd of=/dev/sd<partition> bs=1M conv=fsync
For more information on flashing, see Section "Preparing an SD/MMC card to boot" in the i.MX Linux User's Guide (UG10163)
Regards