diff options
author | Wolfgang Denk <wd@denx.de> | 2007-11-02 15:09:22 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-11-02 15:09:22 +0100 |
commit | e60adeac2d8fa30258e1706bb342a3363526e8d7 (patch) | |
tree | 4be3ed35fbd50b56ac0cebecac2899d6527edbf0 /board/tb0229/u-boot.lds | |
parent | d78791ae914d4e7c5edca1cdad73b3dc81a4eb82 (diff) | |
parent | f0516920f6e048425b005c049378e80d600bd268 (diff) | |
download | u-boot-imx-e60adeac2d8fa30258e1706bb342a3363526e8d7.zip u-boot-imx-e60adeac2d8fa30258e1706bb342a3363526e8d7.tar.gz u-boot-imx-e60adeac2d8fa30258e1706bb342a3363526e8d7.tar.bz2 |
Merge branch 'master' of /home/wd/git/u-boot/work
Diffstat (limited to 'board/tb0229/u-boot.lds')
-rw-r--r-- | board/tb0229/u-boot.lds | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/board/tb0229/u-boot.lds b/board/tb0229/u-boot.lds index 30a2bc5..b2fa9f2 100644 --- a/board/tb0229/u-boot.lds +++ b/board/tb0229/u-boot.lds @@ -43,14 +43,14 @@ SECTIONS . = ALIGN(4); .data : { *(.data) } - . = ALIGN(4); - .sdata : { *(.sdata) } - - _gp = ALIGN(16); + . = .; + _gp = ALIGN(16) + 0x7ff0; - __got_start = .; - .got : { *(.got) } - __got_end = .; + .got : { + __got_start = .; + *(.got) + __got_end = .; + } .sdata : { *(.sdata) } |