diff options
author | Mathieu J. Poirier <mathieu.poirier@linaro.org> | 2012-07-16 14:56:34 -0600 |
---|---|---|
committer | Mathieu J. Poirier <mathieu.poirier@linaro.org> | 2012-07-16 14:56:34 -0600 |
commit | 2267a341307b256c26da9f083ac96eddd183edd0 (patch) | |
tree | 01a029ab3018cbc7ccbee7fbfa166704f027ebcb /include/configs/snowball.h | |
parent | f9e40ea8d741521bd22d8d38dac7565d2264e12a (diff) | |
download | u-boot-linaro-stable-2267a341307b256c26da9f083ac96eddd183edd0.tar.gz |
snowball: Reducing environment block size to 8K.
Environment block size needs to be limited to 8K in order to
avoid over writing u-boot.
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Diffstat (limited to 'include/configs/snowball.h')
-rw-r--r-- | include/configs/snowball.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/snowball.h b/include/configs/snowball.h index ff69947f7..55cd6d25b 100644 --- a/include/configs/snowball.h +++ b/include/configs/snowball.h @@ -62,7 +62,7 @@ #define CONFIG_ENV_SIZE (32*1024) #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 64*1024) #else -#define CONFIG_ENV_SIZE (128*1024) +#define CONFIG_ENV_SIZE (8*1024) #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 256*1024) #endif |