diff options
author | Joakim Tjernlund <Joakim.Tjernlund@transmode.se> | 2011-04-20 14:22:59 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-04-20 22:03:13 +0200 |
commit | 9d8fbd1b20e262a4cfc5da4ee64aebff443d2be8 (patch) | |
tree | 149e3882228e08f5059bdb0f7898e9ccdd037a87 /board/ml2/u-boot.lds | |
parent | 73e5476e1edf1b860dbd9b5fc21ef32ac1b551ba (diff) | |
download | talos-obmc-uboot-9d8fbd1b20e262a4cfc5da4ee64aebff443d2be8.tar.gz talos-obmc-uboot-9d8fbd1b20e262a4cfc5da4ee64aebff443d2be8.zip |
powerpc, 8xx: Fixup all 8xx u-boot.lds scripts
8xx was left behind when fixing up powerpc linking
scripts to support -fpic.
Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
Diffstat (limited to 'board/ml2/u-boot.lds')
-rw-r--r-- | board/ml2/u-boot.lds | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/board/ml2/u-boot.lds b/board/ml2/u-boot.lds index 0f2593de89..9f9ddb8bf0 100644 --- a/board/ml2/u-boot.lds +++ b/board/ml2/u-boot.lds @@ -44,13 +44,14 @@ SECTIONS PROVIDE (erotext = .); .reloc : { - KEEP(*(.got)) _GOT2_TABLE_ = .; KEEP(*(.got2)) + KEEP(*(.got)) + PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4); _FIXUP_TABLE_ = .; KEEP(*(.fixup)) } - __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2; + __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1; __fixup_entries = (. - _FIXUP_TABLE_)>>2; .data : |