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/dave | |
parent | 73e5476e1edf1b860dbd9b5fc21ef32ac1b551ba (diff) |
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/dave')
-rw-r--r-- | board/dave/PPChameleonEVB/u-boot.lds | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/dave/PPChameleonEVB/u-boot.lds b/board/dave/PPChameleonEVB/u-boot.lds index 20c32b73e3c..3b101143540 100644 --- a/board/dave/PPChameleonEVB/u-boot.lds +++ b/board/dave/PPChameleonEVB/u-boot.lds @@ -55,9 +55,10 @@ SECTIONS PROVIDE (erotext = .); .reloc : { - KEEP(*(.got)) _GOT2_TABLE_ = .; KEEP(*(.got2)) + KEEP(*(.got)) + PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4); _FIXUP_TABLE_ = .; KEEP(*(.fixup)) } |