From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lokesh Vutla Date: Mon, 4 Feb 2019 09:48:09 +0530 Subject: [U-Boot] [PATCH 2/3] am65x_evm: Allow bootm to load larger kernels In-Reply-To: <20190201210458.17449-2-afd@ti.com> References: <20190201210458.17449-1-afd@ti.com> <20190201210458.17449-2-afd@ti.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 02/02/19 2:34 AM, Andrew F. Davis wrote: > 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 Reviewed-by: Lokesh Vutla Thanks and regards, Lokesh > --- > include/configs/am65x_evm.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/include/configs/am65x_evm.h b/include/configs/am65x_evm.h > index 31749c6d06..9ce5b6e824 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=" \ >