diff options
author | Ben Warren <bwarren@saruman.qstreams.net> | 2007-11-02 11:20:41 -0400 |
---|---|---|
committer | Ben Warren <bwarren@saruman.qstreams.net> | 2007-11-02 11:20:41 -0400 |
commit | e34a0438923a55aeb3fae8fc31ff41230969abaf (patch) | |
tree | 4be3ed35fbd50b56ac0cebecac2899d6527edbf0 /board/gth2/u-boot.lds | |
parent | 31548249decf18a6b877a18436b6139dd483fe4a (diff) | |
parent | e60adeac2d8fa30258e1706bb342a3363526e8d7 (diff) | |
download | u-boot-imx-e34a0438923a55aeb3fae8fc31ff41230969abaf.zip u-boot-imx-e34a0438923a55aeb3fae8fc31ff41230969abaf.tar.gz u-boot-imx-e34a0438923a55aeb3fae8fc31ff41230969abaf.tar.bz2 |
Merge git://www.denx.de/git/u-boot
Diffstat (limited to 'board/gth2/u-boot.lds')
-rw-r--r-- | board/gth2/u-boot.lds | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/board/gth2/u-boot.lds b/board/gth2/u-boot.lds index 8ba0b6d..90432cb 100644 --- a/board/gth2/u-boot.lds +++ b/board/gth2/u-boot.lds @@ -43,14 +43,14 @@ SECTIONS . = ALIGN(4); .data : { *(.data) } - . = ALIGN(4); - .sdata : { *(.sdata) } + . = .; + _gp = ALIGN(16) + 0x7ff0; - _gp = ALIGN(16); - - __got_start = .; - .got : { *(.got) } - __got_end = .; + .got : { + __got_start = .; + *(.got) + __got_end = .; + } .sdata : { *(.sdata) } |