Skip to content
Snippets Groups Projects
Commit 3a76ab5c authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

rmu board: fix error: 'CONFIG_ENV_SECT_SIZE' undeclared


Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
parent 165f9859
No related branches found
No related tags found
No related merge requests found
...@@ -190,7 +190,8 @@ ...@@ -190,7 +190,8 @@
#define CONFIG_ENV_IS_IN_FLASH 1 #define CONFIG_ENV_IS_IN_FLASH 1
#define CONFIG_ENV_ADDR ((TEXT_BASE) + 0x40000) #define CONFIG_ENV_ADDR ((TEXT_BASE) + 0x40000)
#define CONFIG_ENV_SIZE 0x40000 /* Total Size of Environment Sector */ #define CONFIG_ENV_SECT_SIZE 0x40000 /* Total Size of Environment Sector */
#define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE /* Used size for environment */
/* Address and size of Redundant Environment Sector */ /* Address and size of Redundant Environment Sector */
#define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE) #define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE)
......
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