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.

How can I store the filesys into the flash using UBOOT?

Now,I can store my filesys file filesys.tar into the flash using the nfs system.(in A.6.1 "Restoring the NAND Flash Using NFS" )

But,I want to store the filesys into the flash using uboot such as kernel setting.

I do the following steps in uboot setenv.

1.tftp 0x8200000 filesys.tar

2.nand erase 0x800000 0x2000000

3.nand write 0x8200000 0x800000 0x2000000

THEN,"boot",but the filesys failed.

How can I do it ?