diff options
author | Jon Loeliger <jdl@freescale.com> | 2007-11-02 15:22:01 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2007-11-02 15:22:01 -0500 |
commit | 3cac27c1d40b151f295dcfdb514fa928732e4ecf (patch) | |
tree | 5dbc1813bfa548e8d31879c39c075bfdcbbf8f86 /board/pb1x00/u-boot.lds | |
parent | 3c89d75409eb26639d36dfa11d4ee3d8b962dc3c (diff) | |
parent | e60adeac2d8fa30258e1706bb342a3363526e8d7 (diff) | |
download | u-boot-imx-3cac27c1d40b151f295dcfdb514fa928732e4ecf.zip u-boot-imx-3cac27c1d40b151f295dcfdb514fa928732e4ecf.tar.gz u-boot-imx-3cac27c1d40b151f295dcfdb514fa928732e4ecf.tar.bz2 |
Merge commit 'remotes/wd/master'
Diffstat (limited to 'board/pb1x00/u-boot.lds')
-rw-r--r-- | board/pb1x00/u-boot.lds | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/board/pb1x00/u-boot.lds b/board/pb1x00/u-boot.lds index a2d19a8..363d974 100644 --- a/board/pb1x00/u-boot.lds +++ b/board/pb1x00/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) } |