In message <[EMAIL PROTECTED]> you wrote:
> ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
> 
> Signed-off-by: Kumar Gala <[EMAIL PROTECTED]>
> ---
> 
> Let's see if this fixes the issue on ARM.
> 
>  common/image.c |    8 +++++++-
>  1 files changed, 7 insertions(+), 1 deletions(-)
> 
> diff --git a/common/image.c b/common/image.c
> index 9e446fa..4e0e96d 100644
> --- a/common/image.c
> +++ b/common/image.c
> @@ -140,8 +140,10 @@ ulong getenv_bootm_low(void)
>               return tmp;
>       }
> 
> -#ifdef CFG_SDRAM_BASE
> +#if defined(CFG_SDRAM_BASE)
>       return CFG_SDRAM_BASE;
> +#elif defined(CONFIG_ARM)
> +     return gd->bd->bi_dram[0].start;

But this part of the patch is not mentioned in the description, and I
don't think it's necessary (nor necessarily correct).


Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: [EMAIL PROTECTED]
There's another way to survive.  Mutual trust -- and help.
        -- Kirk, "Day of the Dove", stardate unknown

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users

Reply via email to