diff options
author | Wolfgang Denk <wd@denx.de> | 2010-10-19 21:07:52 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-10-19 21:07:52 +0200 |
commit | 6d8d4ef994a7c46e34b5fe53b1af7aa4f78192bf (patch) | |
tree | a6a58200f5ea04c6d4ad2260dd031fcc6e4183ce /board | |
parent | 083d506937002f2795c80fe0c3ae194ad2c3d085 (diff) | |
parent | bafe7437a4c21a8935ffbb5dfe8b5f1994b9f1d4 (diff) |
Merge branch 'elf_reloc'
Conflicts:
arch/arm/include/asm/config.h
board/LaCie/edminiv2/config.mk
board/karo/tx25/config.mk
board/logicpd/imx27lite/config.mk
doc/README.arm-relocation
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board')
-rw-r--r-- | board/LaCie/edminiv2/config.mk | 3 | ||||
-rw-r--r-- | board/karo/tx25/config.mk | 2 | ||||
-rw-r--r-- | board/logicpd/imx27lite/config.mk | 4 |
3 files changed, 7 insertions, 2 deletions
diff --git a/board/LaCie/edminiv2/config.mk b/board/LaCie/edminiv2/config.mk index d07642f5cf7..2ffd1250af5 100644 --- a/board/LaCie/edminiv2/config.mk +++ b/board/LaCie/edminiv2/config.mk @@ -24,4 +24,5 @@ # MA 02110-1301 USA # -CONFIG_SYS_TEXT_BASE = 0x00100000 +# TEXT_BASE must equal the intended FLASH location of u-boot. +CONFIG_SYS_TEXT_BASE = 0xfff90000 diff --git a/board/karo/tx25/config.mk b/board/karo/tx25/config.mk index 4283c3e344e..18b288392cf 100644 --- a/board/karo/tx25/config.mk +++ b/board/karo/tx25/config.mk @@ -1,5 +1,5 @@ ifdef CONFIG_NAND_SPL CONFIG_SYS_TEXT_BASE = 0x810c0000 else -CONFIG_SYS_TEXT_BASE = 0x81fc0000 +CONFIG_SYS_TEXT_BASE = 0x81200000 endif diff --git a/board/logicpd/imx27lite/config.mk b/board/logicpd/imx27lite/config.mk index 7f22154c618..018d9207e0f 100644 --- a/board/logicpd/imx27lite/config.mk +++ b/board/logicpd/imx27lite/config.mk @@ -1 +1,5 @@ +# with relocation CONFIG_SYS_TEXT_BASE can be anything, and making it 0 +# makes relative and absolute relocation fixups interchangeable. +#CONFIG_SYS_TEXT_BASE = 0 + CONFIG_SYS_TEXT_BASE = 0xc0000000 |