Kumar Gala wrote:
> Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
> to restrict what memory range is used for bootm.
> 
> Signed-off-by: Kumar Gala <[EMAIL PROTECTED]>

Acked-by: Marian Balakowicz <[EMAIL PROTECTED]>

With the following note:

> +ulong getenv_bootm_size(void)
> +{
> +     char *s = getenv ("bootm_size");
> +     if (s) {
> +             ulong tmp = simple_strtoul (s, NULL, 16);
> +             return tmp;
> +     }
> +
> +     return gd->bd->bi_memsize;
> +}

bi_memsize use breaks ARM build. I have noticed that after I have
already pulled in you changes, merges with -rc2 and rebased my other
commits, so it would be good if you could have that fixed in a
separate patch.

m.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users

Reply via email to