diff options
author | Stefan Roese <sr@denx.de> | 2020-04-21 09:28:50 +0200 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2020-04-27 20:30:13 +0200 |
commit | e9dbd1ac8239317809dba140125c1f35f03524de (patch) | |
tree | 08c5d88c2dd6dd911490c8f4594cd4a941d4ea2b /configs/gardena-smart-gateway-mt7688_defconfig | |
parent | 6bd888b63be40342bfa8f7780ac778310140f4d9 (diff) | |
download | u-boot-e9dbd1ac8239317809dba140125c1f35f03524de.tar.gz |
mips: mtmips: Increase CONFIG_SPL_SYS_MALLOC_F_LEN
Since SPL now uses malloc to allocate the buffer for the compressed
image before decompression to the destination address, we need to
configure a big enough malloc space in SPL. 256k seems to be big
enough even for the GARDENA board.
Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Cc: Weijie Gao <weijie.gao@mediatek.com>
Diffstat (limited to 'configs/gardena-smart-gateway-mt7688_defconfig')
-rw-r--r-- | configs/gardena-smart-gateway-mt7688_defconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/gardena-smart-gateway-mt7688_defconfig b/configs/gardena-smart-gateway-mt7688_defconfig index 8951bd3f44..41496f739b 100644 --- a/configs/gardena-smart-gateway-mt7688_defconfig +++ b/configs/gardena-smart-gateway-mt7688_defconfig @@ -4,9 +4,9 @@ CONFIG_SPL_LIBGENERIC_SUPPORT=y CONFIG_ENV_SIZE=0x10000 CONFIG_ENV_OFFSET=0xA0000 CONFIG_ENV_SECT_SIZE=0x10000 -CONFIG_SYS_BOOTCOUNT_ADDR=0xb000006c CONFIG_SPL_SERIAL_SUPPORT=y -CONFIG_SPL_SYS_MALLOC_F_LEN=0x20000 +CONFIG_SYS_BOOTCOUNT_ADDR=0xb000006c +CONFIG_SPL_SYS_MALLOC_F_LEN=0x40000 CONFIG_NR_DRAM_BANKS=1 CONFIG_SPL=y CONFIG_SYS_BOOTCOUNT_SINGLEWORD=y |