sun20i: set CONFIG_SYS_BOOTM_LEN for RISC-V

If this value is not increased, the error occurs during loading
uncompressed kernel from fitImage:
"Error: inflate() returned -5
Image too large: increase CONFIG_SYS_BOOTM_LEN"

Signed-off-by: Cezary Sobczak <cezary.sobczak@3mdeb.com>
Signed-off-by: Samuel Holland <samuel@sholland.org>
This commit is contained in:
Cezary Sobczak 2022-03-13 19:54:28 +01:00 committed by Samuel Holland
parent fe5085b463
commit 2c4589c563

View File

@ -18,7 +18,7 @@
#include <linux/stringify.h>
#ifdef CONFIG_ARM64
#if defined(CONFIG_ARM64) || defined(CONFIG_RISCV)
#define CONFIG_SYS_BOOTM_LEN (32 << 20)
#endif