diff options
author | Thomas Weber <weber@corscience.de> | 2010-10-18 15:38:15 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-10-20 21:39:50 +0200 |
commit | 66fca016057b1c6b697552cc7220ebada9d4f82d (patch) | |
tree | d6253d07851d19f3f9394765ed4b53eb6b4bc0f3 /include/configs | |
parent | b76335178ed399d5843be6bf97707cc9d1b16bbd (diff) | |
download | u-boot-imx-66fca016057b1c6b697552cc7220ebada9d4f82d.zip u-boot-imx-66fca016057b1c6b697552cc7220ebada9d4f82d.tar.gz u-boot-imx-66fca016057b1c6b697552cc7220ebada9d4f82d.tar.bz2 |
Devkit8000: Adapt changes to ARM relocation support
Fix compilation of Devkit8000 after introduction of
ARM relocation support.
Signed-off-by: Thomas Weber <weber@corscience.de>
Adapt to TEXT_BASE => CONFIG_SYS_TEXT_BASE rename.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/devkit8000.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/configs/devkit8000.h b/include/configs/devkit8000.h index 2815771..c47e17c 100644 --- a/include/configs/devkit8000.h +++ b/include/configs/devkit8000.h @@ -38,6 +38,8 @@ #define CONFIG_OMAP3430 1 /* which is in a 3430 */ #define CONFIG_OMAP3_DEVKIT8000 1 /* working with DevKit8000 */ +#define CONFIG_SYS_TEXT_BASE 0x80008000 + #define CONFIG_SDRC /* The chip has SDRC controller */ #include <asm/arch/cpu.h> /* get chip and board defs */ @@ -306,4 +308,7 @@ extern unsigned int boot_flash_sec; 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) + #endif /* __CONFIG_H */ |