mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
coldfire: cpu5282: increase malloc space to fix crash on start u-boot
The malloc space is to small to boot, the current uboot 2013.10-rcX, This will fix the startup problems by increasing the mallog space to 4MiB. Signed-off-by: Jens Scharsig (BuS Elektronik) <esw@bus-elektronik.de>
This commit is contained in:
parent
e5a9a4076f
commit
8c89443e13
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@
|
||||||
#define CONFIG_SYS_SDRAM_SIZE CONFIG_SYS_SDRAM_SIZE0
|
#define CONFIG_SYS_SDRAM_SIZE CONFIG_SYS_SDRAM_SIZE0
|
||||||
|
|
||||||
#define CONFIG_SYS_MONITOR_LEN 0x20000
|
#define CONFIG_SYS_MONITOR_LEN 0x20000
|
||||||
#define CONFIG_SYS_MALLOC_LEN (256 << 10)
|
#define CONFIG_SYS_MALLOC_LEN (4 * 1024 * 1024)
|
||||||
#define CONFIG_SYS_BOOTPARAMS_LEN 64*1024
|
#define CONFIG_SYS_BOOTPARAMS_LEN 64*1024
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue