[U-Boot] [PATCH] armv8: LS1088: Increase size of CONFIG_SYS_MONITOR_LEN

Total size of relocated u-boot is greater than current value of 512MB, increase this to 1MB.
Signed-off-by: Ashish Kumar Ashish.Kumar@nxp.com --- include/configs/ls1088a_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/configs/ls1088a_common.h b/include/configs/ls1088a_common.h index c96d48d..7ac05ee 100644 --- a/include/configs/ls1088a_common.h +++ b/include/configs/ls1088a_common.h @@ -245,7 +245,7 @@ unsigned long long get_qixis_addr(void);
#define CONFIG_SYS_SPL_MALLOC_SIZE 0x00100000 #define CONFIG_SYS_SPL_MALLOC_START 0x80200000 -#define CONFIG_SYS_MONITOR_LEN (512 * 1024) +#define CONFIG_SYS_MONITOR_LEN (1024 * 1024) #endif #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
participants (1)
-
Ashish Kumar