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.

AM5718: Where is the load address of uEnv.txt when flashing eMMC.

Part Number: AM5718

Hi, 

I have a question about updating eMMC.

Doesn't uEnv.txt file need for booting MLO and u-boot?

Below guide doesn't include how to write uEnv.txt. 

U-Boot # mmc dev 0
U-Boot # mmc rescan
U-Boot # mmc dev 1
U-Boot # fatload mmc 0 ${loadaddr} MLO
U-Boot # mmc write ${loadaddr} 0x100 0x100
U-Boot # mmc write ${loadaddr} 0x200 0x100
U-Boot # fatload mmc 0 ${loadaddr} u-boot.img
U-Boot # mmc write ${loadaddr} 0x300 0x400
U-Boot # fatload mmc 0 ${loadaddr} rootfs.ext4
U-Boot # mmc write ${loadaddr} 0x1000 ...rootfs.ext4 size in bytes divided by 512, in hex...

I want to store uEnv.txt in eMMC.

Where should uEnv.txt be written?

Does U-Boot save u-boot environment information in eMMC?