From: Thomas Weber Date: Thu, 18 Nov 2010 07:45:25 +0000 (+0100) Subject: Devkit8000: Fix build after introduction of GENERATED_GBL_DATA_SIZE X-Git-Tag: v2010.12-rc2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=30f305c975eb530c7b04999d5f1f66664cbfb0d5;p=platform%2Fkernel%2Fu-boot.git Devkit8000: Fix build after introduction of GENERATED_GBL_DATA_SIZE This patch fixes the issue by defining and using CONFIG_SYS_INIT_RAM_SIZE and CONFIG_SYS_INIT_RAM_ADDR. This patch adopts the commit 31bfcf1c5776df3d90286aa15104c45096d53dc6 from Steve Sakoman and Sandeep Paulraj on Devkit8000. Signed-off-by: Thomas Weber --- diff --git a/include/configs/devkit8000.h b/include/configs/devkit8000.h index fa7a6c7..d898b77 100644 --- a/include/configs/devkit8000.h +++ b/include/configs/devkit8000.h @@ -308,6 +308,10 @@ extern unsigned int boot_flash_type; #endif #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 -#define CONFIG_SYS_INIT_SP_ADDR (LOW_LEVEL_SRAM_STACK - CONFIG_SYS_GBL_DATA_SIZE) +#define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800 +#define CONFIG_SYS_INIT_RAM_SIZE 0x800 +#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \ + CONFIG_SYS_INIT_RAM_SIZE - \ + GENERATED_GBL_DATA_SIZE) #endif /* __CONFIG_H */