[U-Boot] [PATCH v4 16/20] SPL: do not use fix value for u-boot size

Sughosh Ganu urwithsughosh at gmail.com
Mon Aug 27 21:18:54 CEST 2012


On Fri Aug 24, 2012 at 04:58:30PM -0700, Tom Rini wrote:
> From: Stefano Babic <sbabic at denx.de>
> 
> If an u-boot image is not found, SPL thinks to load a bare
> u-boot.bin image with a maximum size of 200KB.
> Use CONFIG_SYS_MONITOR_LEN instead.
> 
> Signed-off-by: Stefan Roese <stefan.roese at gmail.com>
> Signed-off-by: Stefano Babic <sbabic at denx.de>
> Signed-off-by: Tom Rini <trini at ti.com>
> ---
> Changes in v4:
> - Add Stefano's patch for CONFIG_SYS_MONITOR_LEN
> 
>  common/spl/spl.c |    6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/common/spl/spl.c b/common/spl/spl.c
> index 3f47873..f6b2bb0 100644
> --- a/common/spl/spl.c
> +++ b/common/spl/spl.c
> @@ -36,6 +36,10 @@
>  
>  DECLARE_GLOBAL_DATA_PTR;
>  
> +#ifndef CONFIG_SYS_MONITOR_LEN
> +#define CONFIG_SYS_MONITOR_LEN	(200 * 1024)
> +#endif

The u-boot size on hawkboard is a bit more than this. I will send a
patch to update hawkboard's config file. Can you include it in your
patch series.

-sughosh


More information about the U-Boot mailing list