- How u-boot bootloader reads/saves its environment Variables ?
How we declare address of u-boot environment Variable section in Flash ?
From description at here : The U-Boot environment is a block of memory that is kept on persistent storage and copied to RAM when U-Boot starts.
What's meaning of " copied to RAM" ?
U-boot will copy block of memory of environment variables to RAM ?
Thanks
The address and size of env variables block will be defined in the board headers file. See include/configs/am3517_evm.h for example:
u-boot loads
CONFIG_SYS_ENV_SECT_SIZE
fromSMNAND_ENV_OFFSET
. You can change values and then save them viasaveenv
.