diff options
Diffstat (limited to 'board/incaip')
-rw-r--r-- | board/incaip/u-boot.lds | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/board/incaip/u-boot.lds b/board/incaip/u-boot.lds index 10c9917..9639b81 100644 --- a/board/incaip/u-boot.lds +++ b/board/incaip/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) } |