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
已解决! 转到解答。
Finally, I am able to solve the problem by using the other partition "/none" which i don't know why it is created. I suppose it is for general development purpose.
none 95M 0 95M 0% /dev
Thanks
Finally, I am able to solve the problem by using the other partition "/none" which i don't know why it is created. I suppose it is for general development purpose.
none 95M 0 95M 0% /dev
Thanks
Hello @Zhiming_Liu ,
The uuu.auto script doesn't helped much.
I checked that the ramfs size before the copy of my rootfs and it shows that the available memory is 61M and my rootfs size is 67M that is why it failed at 92% because the ramfs size is getting full.