Skip to content
Snippets Groups Projects
Commit 155cb010 authored by Stefan Roese's avatar Stefan Roese
Browse files

- Fix bug in CONFIG_VERSION_VARIABLE.

parent f12e568c
No related branches found
No related tags found
No related merge requests found
...@@ -183,9 +183,6 @@ int _do_setenv (int flag, int argc, char *argv[]) ...@@ -183,9 +183,6 @@ int _do_setenv (int flag, int argc, char *argv[])
* ver is readonly. * ver is readonly.
*/ */
if ( (strcmp (name, "serial#") == 0) || if ( (strcmp (name, "serial#") == 0) ||
#if defined(CONFIG_VERSION_VARIABLE)
(strcmp (name, "ver") == 0) ||
#endif /* CONFIG_VERSION_VARIABLE */
((strcmp (name, "ethaddr") == 0) ((strcmp (name, "ethaddr") == 0)
#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR) #if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
&& (strcmp (env_get_addr(oldval),MK_STR(CONFIG_ETHADDR)) != 0) && (strcmp (env_get_addr(oldval),MK_STR(CONFIG_ETHADDR)) != 0)
......
...@@ -284,10 +284,8 @@ void main_loop (void) ...@@ -284,10 +284,8 @@ void main_loop (void)
#ifdef CONFIG_VERSION_VARIABLE #ifdef CONFIG_VERSION_VARIABLE
{ {
extern char version_string[]; extern char version_string[];
char *str = getenv("ver");
if (!str) setenv ("ver", version_string); /* set version variable */
setenv ("ver", version_string); /* set version variable */
} }
#endif /* CONFIG_VERSION_VARIABLE */ #endif /* CONFIG_VERSION_VARIABLE */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment