diff options
| author | Przemyslaw Marczak <[email protected]> | 2015-03-04 14:01:29 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2015-03-09 11:13:29 -0400 |
| commit | b648a7891e8e569a88573f5956099d39e39ab4dd (patch) | |
| tree | 6afec556bc5229f665d346ada5c6c2e2f891d9be /include | |
| parent | 599807fc60e41934effea44a6a2bbea1d9b23064 (diff) | |
ti-armv7-common: increase malloc pool len by dfu mmc file buffer size
The dfu mmc file buffer, which was static, now is allocated
by memalign(), so the malloc pool len should be also increased.
Signed-off-by: Przemyslaw Marczak <[email protected]>
Cc: Tom Rini <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/ti_armv7_common.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/configs/ti_armv7_common.h b/include/configs/ti_armv7_common.h index c0c10602167..110a4f87956 100644 --- a/include/configs/ti_armv7_common.h +++ b/include/configs/ti_armv7_common.h @@ -127,7 +127,11 @@ * we are on so we do not need to rely on the command prompt. We set a * console baudrate of 115200 and use the default baud rate table. */ -#define CONFIG_SYS_MALLOC_LEN (16 << 20) +#ifdef CONFIG_DFU_MMC +#define CONFIG_SYS_MALLOC_LEN ((16 << 20) + CONFIG_SYS_DFU_DATA_BUF_SIZE) +#else +#define CONFIG_SYS_MALLOC_LEN (16 << 20) +#endif #define CONFIG_SYS_HUSH_PARSER #define CONFIG_SYS_PROMPT "U-Boot# " #define CONFIG_SYS_CONSOLE_INFO_QUIET |
