[U-Boot-Users] [PATCH] [new uImage] Fix build issue on ARM

ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
Signed-off-by: Kumar Gala galak@kernel.crashing.org ---
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; #else return 0; #endif @@ -155,7 +157,11 @@ ulong getenv_bootm_size(void) return tmp; }
+#if defined(CONFIG_ARM) + return gd->bd->bi_dram[0].size; +#else return gd->bd->bi_memsize; +#endif }
void memmove_wd (void *to, void *from, size_t len, ulong chunksz)

In message Pine.LNX.4.64.0803051055010.17721@blarg.am.freescale.net you wrote:
ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
Signed-off-by: Kumar Gala galak@kernel.crashing.org
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
participants (2)
-
Kumar Gala
-
Wolfgang Denk