Hi,
Please provide me procedure to flash the boot partition in Nand.
I am using tisdk filesystem from the latest sdk Release.
I followed below procedure to remount the boot partition but dint work,
Compile:-
mkfs.ubifs -r boot/ -F -o boot.ubifs -m 2048 -e 126976 -c 122
Procedure in u-boot:-
tftp 82000000 boot.ubifs
ubi part ubifs
ubifsmount boot
ubi remove boot
ubi create boot size in hex of the ubifs image
ubi write $addr_file} boot [size in hex of the ubifs image]
After rebooting, i could find only loader boot partition not the updated one.
Please let me know whether the procedure i am following is correct.