Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jack Humbert
reform-boundary-uboot
Commits
155cb010
Commit
155cb010
authored
21 years ago
by
Stefan Roese
Browse files
Options
Downloads
Patches
Plain Diff
- Fix bug in CONFIG_VERSION_VARIABLE.
parent
f12e568c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/cmd_nvedit.c
+0
-3
0 additions, 3 deletions
common/cmd_nvedit.c
common/main.c
+1
-3
1 addition, 3 deletions
common/main.c
with
1 addition
and
6 deletions
common/cmd_nvedit.c
+
0
−
3
View file @
155cb010
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
common/main.c
+
1
−
3
View file @
155cb010
...
@@ -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 */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment