diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2010-10-22 01:32:56 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2010-10-22 02:14:54 -0500 |
commit | 4c66447ae77e52edd5d9df33bd8a3457860713b8 (patch) | |
tree | 00c1493a4a609441ddc1b6ffd235c58acc0f061a /include | |
parent | fff6ec382c139eb242bd85356e66a0bc43becb63 (diff) | |
download | u-boot-imx-4c66447ae77e52edd5d9df33bd8a3457860713b8.zip u-boot-imx-4c66447ae77e52edd5d9df33bd8a3457860713b8.tar.gz u-boot-imx-4c66447ae77e52edd5d9df33bd8a3457860713b8.tar.bz2 |
corenet_ds: Update CONFIG_SYS_GBL_DATA_SIZE to deal with growth in gd_t
The recent change the env code added an additional 32 bytes into gd_t
and that causes to grow pass the previous CONFIG_SYS_GBL_DATA_SIZE size.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/corenet_ds.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/corenet_ds.h b/include/configs/corenet_ds.h index 85147d0..2733fb2 100644 --- a/include/configs/corenet_ds.h +++ b/include/configs/corenet_ds.h @@ -213,7 +213,7 @@ #endif #define CONFIG_SYS_INIT_RAM_END 0x00004000 /* End of used area in RAM */ -#define CONFIG_SYS_GBL_DATA_SIZE 128 /* num bytes initial data */ +#define CONFIG_SYS_GBL_DATA_SIZE 256 /* num bytes initial data */ #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE) #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET |