#define CONFIG_SPL_MAX_SIZE 0x100000 #define CONFIG_SPL_MAX_SIZE 0x40000 #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64M */ #define GICD_BASE 0xffc01000 2 changes: 1 addition & 1 deletion 2 include/configs/rk3328_common.h Original file line numberDiff line numberDiff line change ...
The CONFIG_SPL_MAX_SIZE definition did not account for all areas that are used by the boot ROM according to the manual, causing boot failures due to truncated SPL images when actually hitting this limit. Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>master...
#define CONFIG_SPL_BSS_MAX_SIZE 0x80000 /* 512 KB */ #define CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS 0x200 /* 256 KB */ #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img" 1 change: 0 additions & 1 deletion 1 include/configs/at91sam...