diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2009-06-14 21:23:27 -0400 | 
|---|---|---|
| committer | Mike Frysinger <vapier@gentoo.org> | 2009-06-15 13:30:18 -0400 | 
| commit | fea63e2a44f0db51d2e39ee7793e8c6d7f3cf5d4 (patch) | |
| tree | 13d3829fe30b0829b17d0703ad2d4d70a31c647b | |
| parent | bc43a8d8994c2f0be29e09b13b15da7f79e2c081 (diff) | |
| download | olio-uboot-2014.01-fea63e2a44f0db51d2e39ee7793e8c6d7f3cf5d4.tar.xz olio-uboot-2014.01-fea63e2a44f0db51d2e39ee7793e8c6d7f3cf5d4.zip | |
Blackfin: bf548-ezkit: bump up monitor size
The latest version of U-Boot got a bit fatter in the BSS section which
caused overflows in the RAM region, so increase the monitor size.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
| -rw-r--r-- | include/configs/bf548-ezkit.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/include/configs/bf548-ezkit.h b/include/configs/bf548-ezkit.h index 4e2ee627a..fa90f91d5 100644 --- a/include/configs/bf548-ezkit.h +++ b/include/configs/bf548-ezkit.h @@ -61,7 +61,7 @@  #define CONFIG_EBIU_FCTL_VAL	(BCLK_4)  #define CONFIG_EBIU_MODE_VAL	(B0MODE_FLASH) -#define CONFIG_SYS_MONITOR_LEN	(768 * 1024) +#define CONFIG_SYS_MONITOR_LEN	(1024 * 1024)  #define CONFIG_SYS_MALLOC_LEN	(768 * 1024) |