Hi All,
I am facing an issue with burning the rootfs on NAND through UUU tool.
The script has below entries for burning kernel, dtb and rootfs,
# Create a mount point
FBK: ucmd mkdir -p /mnt/mountpoint
# burn kernel + device tree
FBK: ucmd mount -t ubifs ubi0:kernel1 /mnt/mountpoint
FBK: ucp zImage t:/mnt/mountpoint/zImage.bin
FBK: ucp imx6ull-14x14.dtb t:/mnt/mountpoint/imx6ull-14x14.dtb
SDP: delay 1000
FBK: ucmd umount /mnt/mountpoint
# burn rootfs
FBK: ucp ev-production-image-imx6ull.squashfs t:/tmp/ev-production-image-imx6ull.squashfs
FBK: ucmd ubiupdatevol /dev/ubi0_1 /tmp/ev-production-image-imx6ull.squashfs
When the script is run, it pass through kernel and dtb burning on NAND successfully but fails to copy the rootfs image into local /tmp directory
1:1>Start Cmd:FBK: ucmd mkdir -p /mnt/mountpoint
1:1>Okay (0.034s)
1:1>Start Cmd:FBK: ucmd mount -t ubifs ubi0:kernel1 /mnt/mountpoint
1:1>Okay (0.31s)
1:1>Start Cmd:FBK: ucp zImage.bin t:/mnt/mountpoint/zImage.bin
100%1:1>Okay (0.429s)
1:1>Start Cmd:FBK: ucp imx6ull-14x14.dtb t:/mnt/mountpoint/imx6ull-14x14.dtb
205%1:1>Okay (0.006s)
1:1>Start Cmd:FBK: ucmd umount /mnt/mountpoint
1:1>Okay (3.303s)
1:1>Start Cmd:FBK: ucp ev-production-image-imx6ull.squashfs t:/tmp/ev-production-image-imx6ull.squashfs
92%1:1>Fail (3.286s)
The rootfs file size is around 67MB and my DRAM size is 256MB.
Any feedback is appreciated.
Regards,
Kiran