
29 Feb
2008
29 Feb
'08
3:34 p.m.
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 galak@kernel.crashing.org
Acked-by: Marian Balakowicz m8@semihalf.com
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.