Dear NXP,
I have to create the 5 partition in EMMC using UUU script. Please provide the script or steps. Currently I am using following commands to flash,
.\uuu.exe -b emmc_all .\imx-boot .\ccu-rootfs-image-wabco_ccu.sdcard.bz2
partition "all" means whole device
Regards,
Hi Vinoth
one can look at sample scripts examples:
https://github.com/NXPmicro/mfgtools/wiki/Sample-script
If mfg tool used before, look at sect.Migration from mfgtool ucl2.xml uuu manual
https://github.com/NXPmicro/mfgtools/releases/tag/uuu_1.4.43
Best regards
igor
Thank you @igorpadykov
I have to create 3 partition shall I use this command
0 to 1GB
FBK: ucmd dd if=/tmp/partition1 of=/dev/mmcblk0p1 bs=1k seek=1024*1024 conv=fsync
1 to 2 GB
FBK: ucmd dd if=/tmp/partition2 of=/dev/mmcblk0p2 bs=1k seek=1024*1024 conv=fsync
2 to 3 GB
FBK: ucmd dd if=/tmp/partition3 of=/dev/mmcblk0p3 bs=1k seek=1024*1024 conv=fsync
Regards,