uboot中setenv和saveenv分析 转:https://blog.csdn.net/weixin_34355715/article/details/85751477 Env在u-boot中通常有两种存在方式,在永久性存储介质中(flash、NVRAM等),在SDRAM中。可配置不适用env的永久存储方式,但不常用。U-boot在启动时会将存储在永久性存储介质中的env重新定位到RAM中,这样可以快速访问,同...
uboot代码中设置参数是不是用的setenv()函数?譬如:setenv("bootcmd","abcdefg").对吗?
255 set_default_env(); 256 } 257 else { 258 env_relocate_spec (); 259 } 260 gd->env_addr = (ulong)&(env_ptr->data); 261 262 #ifdef CONFIG_AMIGAONEG3SE 263 disable_nvram(); 264 #endif 265 } 注:ENV_IS_EMBEDDED没有定义,其含义为: The environment buffer is embedded with the ...