diff options
author | Patrice Chotard | 2018-07-16 10:04:19 +0200 |
---|---|---|
committer | Tom Rini | 2018-07-24 09:25:23 -0400 |
commit | 4807c40c2f145e9721fc7891730cb26043cbd723 (patch) | |
tree | e08c6b9533b2e91af79b2a72d029feba31643d28 /include | |
parent | 980f65dc6cfdf8c35475712a37f5f267a744b852 (diff) |
board: STiH410-B2260: Set SYS_BOOTM_LEN to 16M
With recent kernel v4.18-rcx, uImage becomes bigger than 8MB.
Set SYS_BOOTM_LEN to 16MB, this fix the following error message:
"Fix Loading Kernel Image ... Image too large: increase
CONFIG_SYS_BOOTM_LEN"
Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/stih410-b2260.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/configs/stih410-b2260.h b/include/configs/stih410-b2260.h index d8bf3b6580e..9ce31f44631 100644 --- a/include/configs/stih410-b2260.h +++ b/include/configs/stih410-b2260.h @@ -7,6 +7,8 @@ #ifndef __CONFIG_H #define __CONFIG_H +#include <linux/sizes.h> + /* ram memory-related information */ #define CONFIG_NR_DRAM_BANKS 1 #define PHYS_SDRAM_1 0x40000000 @@ -19,6 +21,7 @@ /* Environment */ #define CONFIG_LOADADDR CONFIG_SYS_LOAD_ADDR +#define CONFIG_SYS_BOOTM_LEN SZ_16M #define BOOT_TARGET_DEVICES(func) \ func(MMC, mmc, 0) \ |