Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
MMC U-Boot Custodian Tree
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
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
U-Boot
Custodians
MMC U-Boot Custodian Tree
Commits
500545cc
Commit
500545cc
authored
22 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Patches
Plain Diff
Fix problem with default #defines
Cleanup compiler warning
parent
47cd00fa
No related branches found
Branches containing commit
Tags
LABEL_2003_03_06_1440
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/env_flash.c
+3
-1
3 additions, 1 deletion
common/env_flash.c
include/environment.h
+9
-2
9 additions, 2 deletions
include/environment.h
with
12 additions
and
3 deletions
common/env_flash.c
+
3
−
1
View file @
500545cc
...
...
@@ -160,9 +160,11 @@ int env_init(void)
#ifdef CMD_SAVEENV
int
saveenv
(
void
)
{
char
*
saved_data
=
NULL
;
int
rc
=
1
;
#if CFG_ENV_SECT_SIZE > CFG_ENV_SIZE
ulong
up_data
=
0
;
char
*
saved_data
=
NULL
;
#endif
debug
(
"Protect off %08lX ... %08lX
\n
"
,
(
ulong
)
flash_addr
,
end_addr
);
...
...
This diff is collapsed.
Click to expand it.
include/environment.h
+
9
−
2
View file @
500545cc
...
...
@@ -47,8 +47,15 @@
# if !defined(CFG_ENV_ADDR_REDUND) && defined(CFG_ENV_OFFSET_REDUND)
# define CFG_ENV_ADDR_REDUND (CFG_FLASH_BASE + CFG_ENV_OFFSET_REDUND)
# endif
# ifndef CFG_ENV_SIZE
# define CFG_ENV_SIZE CFG_ENV_SECT_SIZE
# if defined(CFG_ENV_SECT_SIZE) || defined(CFG_ENV_SIZE)
# ifndef CFG_ENV_SECT_SIZE
# define CFG_ENV_SECT_SIZE CFG_ENV_SIZE
# endif
# ifndef CFG_ENV_SIZE
# define CFG_ENV_SIZE CFG_ENV_SECT_SIZE
# endif
# else
# error "Both CFG_ENV_SECT_SIZE and CFG_ENV_SIZE undefined"
# endif
# if defined(CFG_ENV_ADDR_REDUND) && !defined(CFG_ENV_SIZE_REDUND)
# define CFG_ENV_SIZE_REDUND CFG_ENV_SIZE
...
...
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