diff options
author | Heiko Stuebner | 2021-02-09 14:47:04 +0100 |
---|---|---|
committer | Kever Yang | 2021-03-30 16:53:00 +0800 |
commit | e436c499dc99d4b768eb6a9a99ce06dc7a81cb3a (patch) | |
tree | 075c7d8f4c7d8f10b645fd16b4ae345c9244b8ec /include | |
parent | a062144518afd72d2e96bf44bad72037ac39a57e (diff) |
rockchip: rk3368: set CONFIG_SYS_BOOTM_LEN to 64MB
Mimicing for example the rk3399, set the SYS_BOOTM_LEN to 64MB so
that regular kernel images can get loaded without problems.
Signed-off-by: Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/rk3368_common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/rk3368_common.h b/include/configs/rk3368_common.h index 86498b4c822..fbbb8cf267e 100644 --- a/include/configs/rk3368_common.h +++ b/include/configs/rk3368_common.h @@ -31,6 +31,8 @@ #define CONFIG_SPL_BSS_MAX_SIZE 0x20000 #define CONFIG_SPL_STACK 0x00188000 +#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64M */ + #ifndef CONFIG_SPL_BUILD #define ENV_MEM_LAYOUT_SETTINGS \ "scriptaddr=0x00500000\0" \ |