This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi, I am trying to boot UBIFS based rootfs on NAND flash.
ubinize -o rootfs.ubi.img -m 2048 -p 128KiB -s 512 -O 2048 ./ubinize.cfg
flash_eraseall /dev/mtd10
ubiformat /dev/mtd10 -f /tmp/rootfs.ubi.img -s 512 -O 2048
setenv bootargs console=ttyO2,115200n8 ubi.mtd=10,2048 rootfstype=ubifs root=ubi0:rootfs rw ;
setenv nandargs setenv bootargs console=ttyO2,115200n8 ubi.mtd=10,2048 rootfstype=ubifs root=ubi0:rootfs rw ;
saveenv;