diff options
| author | Andrew F. Davis <[email protected]> | 2019-02-01 15:04:57 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2019-02-09 07:51:01 -0500 |
| commit | 64176a8f5c24037b3b5b1a997f19304dff65bc97 (patch) | |
| tree | 093a4bf8c6fd304f996204fae74f430e0b5313ab /include | |
| parent | e8cc366ca7c9f1b07f706772e13be6b84ca5521a (diff) | |
am65x_evm: Allow bootm to load larger kernels
Bootm will fail to load kernels over 8MB, this is not enough
for our 64bit kernel images. Increase this to 64MB.
Signed-off-by: Andrew F. Davis <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Reviewed-by: Lokesh Vutla <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/am65x_evm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/am65x_evm.h b/include/configs/am65x_evm.h index 31749c6d06f..9ce5b6e8241 100644 --- a/include/configs/am65x_evm.h +++ b/include/configs/am65x_evm.h @@ -37,6 +37,8 @@ #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SPL_TEXT_BASE + \ CONFIG_SYS_K3_NON_SECURE_MSRAM_SIZE - 4) +#define CONFIG_SYS_BOOTM_LEN SZ_64M + /* U-Boot general configuration */ #define EXTRA_ENV_AM65X_BOARD_SETTINGS \ "findfdt=" \ |
