diff options
author | Wolfgang Denk <wd@denx.de> | 2010-10-18 23:43:37 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-10-18 23:48:15 +0200 |
commit | c8d76eaf606096eddbe62b8a86545f5116f5189c (patch) | |
tree | a38043189a96b391d421d83aa875eac662d3f01f /board/eNET | |
parent | 1ba91ba23396005ef7b42381cc21f0baf78d0d60 (diff) | |
download | u-boot-imx-c8d76eaf606096eddbe62b8a86545f5116f5189c.zip u-boot-imx-c8d76eaf606096eddbe62b8a86545f5116f5189c.tar.gz u-boot-imx-c8d76eaf606096eddbe62b8a86545f5116f5189c.tar.bz2 |
Rename TEXT_BASE: fix merge conflicts
Commit 14d0a02a "Rename TEXT_BASE into CONFIG_SYS_TEXT_BASE" missed a
few places, especially for boards that were added inbetween. Fix the
remaining issues.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/eNET')
-rw-r--r-- | board/eNET/u-boot.lds | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/board/eNET/u-boot.lds b/board/eNET/u-boot.lds index b414079b..3eeb2a2 100644 --- a/board/eNET/u-boot.lds +++ b/board/eNET/u-boot.lds @@ -27,7 +27,7 @@ ENTRY(_start) SECTIONS { - . = TEXT_BASE; /* Location of bootcode in flash */ + . = CONFIG_SYS_TEXT_BASE; /* Location of bootcode in flash */ __text_start = .; .text : { *(.text*); } @@ -94,11 +94,11 @@ SECTIONS * The fff0 offset of resetvec is important, however. */ . = 0xfffffe00; - .start32 : AT (TEXT_BASE + 0x3fe00) { KEEP(*(.start32)); } + .start32 : AT (CONFIG_SYS_TEXT_BASE + 0x3fe00) { KEEP(*(.start32)); } . = 0xf800; - .start16 : AT (TEXT_BASE + 0x3f800) { KEEP(*(.start16)); } + .start16 : AT (CONFIG_SYS_TEXT_BASE + 0x3f800) { KEEP(*(.start16)); } . = 0xfff0; - .resetvec : AT (TEXT_BASE + 0x3fff0) { KEEP(*(.resetvec)); } + .resetvec : AT (CONFIG_SYS_TEXT_BASE + 0x3fff0) { KEEP(*(.resetvec)); } } |