mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
- Fix bug in CONFIG_VERSION_VARIABLE.
This commit is contained in:
parent
f12e568ca4
commit
155cb0104a
2 changed files with 1 additions and 6 deletions
|
@ -183,9 +183,6 @@ int _do_setenv (int flag, int argc, char *argv[])
|
|||
* ver is readonly.
|
||||
*/
|
||||
if ( (strcmp (name, "serial#") == 0) ||
|
||||
#if defined(CONFIG_VERSION_VARIABLE)
|
||||
(strcmp (name, "ver") == 0) ||
|
||||
#endif /* CONFIG_VERSION_VARIABLE */
|
||||
((strcmp (name, "ethaddr") == 0)
|
||||
#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
|
||||
&& (strcmp (env_get_addr(oldval),MK_STR(CONFIG_ETHADDR)) != 0)
|
||||
|
|
|
@ -284,9 +284,7 @@ void main_loop (void)
|
|||
#ifdef CONFIG_VERSION_VARIABLE
|
||||
{
|
||||
extern char version_string[];
|
||||
char *str = getenv("ver");
|
||||
|
||||
if (!str)
|
||||
setenv ("ver", version_string); /* set version variable */
|
||||
}
|
||||
#endif /* CONFIG_VERSION_VARIABLE */
|
||||
|
|
Loading…
Reference in a new issue