Part Number: BEAGLEBK
Tool/software: Linux
Hi,
I have read about the env import/export commands from http://processors.wiki.ti.com/index.php/AM335x_U-Boot_User%27s_Guide
In the section "Making use pre-existing uEnv on SD card", it describes it is possible for u-boot to import an plain text file (uEnv.txt).
For example,
=> fatload mmc 0 0x81000000 uEnv.txt
=> env import -t 0x81000000 $filesize
Questions:
1. I have the u-boot environment variables stored in the eMMC FAT partition in the file uboot.env. Do the environment variables get saved back to uboot.env? If not, how do I save the imported contents from uEnv.txt to uboot.env so that u-boot can use them afterward?
2. Is it possible to save only one environment variable back to uboot.env? If yes, how can it be done?
3. Is there an example explaining "env export"? I assume it is the opposite of "env import", which reads from a plaint text file. So the "export" should save to a file? Please explain.
Thank you.