diff options
author | Stefan Roese <sr@denx.de> | 2007-11-13 08:16:40 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-11-13 08:16:40 +0100 |
commit | 5c568d6a7f950b9e7e32a63a5893f979b8789b4d (patch) | |
tree | 44ed0fdc0548facecfa35e8d6eedf0616c3ca269 /board/dbau1x00/u-boot.lds | |
parent | 49801028715cd8bc22863cdfc0ee7919b7a6af4b (diff) | |
parent | 992742a5b09d9040adbd156fb90756af66ade310 (diff) | |
download | u-boot-imx-5c568d6a7f950b9e7e32a63a5893f979b8789b4d.zip u-boot-imx-5c568d6a7f950b9e7e32a63a5893f979b8789b4d.tar.gz u-boot-imx-5c568d6a7f950b9e7e32a63a5893f979b8789b4d.tar.bz2 |
Merge branch 'master' of git://www.denx.de/git/u-boot
Diffstat (limited to 'board/dbau1x00/u-boot.lds')
-rw-r--r-- | board/dbau1x00/u-boot.lds | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/board/dbau1x00/u-boot.lds b/board/dbau1x00/u-boot.lds index 10c9917..9639b81 100644 --- a/board/dbau1x00/u-boot.lds +++ b/board/dbau1x00/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) } |