diff options
| author | Joakim Tjernlund <Joakim.Tjernlund@transmode.se> | 2011-04-24 10:29:32 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-04-24 22:49:16 +0200 | 
| commit | c1fa1b7d00712b41a6c710e7ed33782cb3f47191 (patch) | |
| tree | ae4759fc8b10e49628e2948a35b5f75e1419b68f | |
| parent | 735eb0f0e66b544b1dfaf6c43ce6e4bd9ae64b5e (diff) | |
| download | olio-uboot-2014.01-c1fa1b7d00712b41a6c710e7ed33782cb3f47191.tar.xz olio-uboot-2014.01-c1fa1b7d00712b41a6c710e7ed33782cb3f47191.zip | |
powerpc, 8xx: Fix fallout from "Fixup all 8xx u-boot.lds scripts"
Two linker scripts for 8xx was missed.
Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
| -rw-r--r-- | board/matrix_vision/mvsmr/u-boot.lds | 2 | ||||
| -rw-r--r-- | board/rsdproto/u-boot.lds | 7 | 
2 files changed, 5 insertions, 4 deletions
| diff --git a/board/matrix_vision/mvsmr/u-boot.lds b/board/matrix_vision/mvsmr/u-boot.lds index bf2ed0485..57c37deb8 100644 --- a/board/matrix_vision/mvsmr/u-boot.lds +++ b/board/matrix_vision/mvsmr/u-boot.lds @@ -62,7 +62,7 @@ SECTIONS      _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    : diff --git a/board/rsdproto/u-boot.lds b/board/rsdproto/u-boot.lds index 81728db25..a729c5262 100644 --- a/board/rsdproto/u-boot.lds +++ b/board/rsdproto/u-boot.lds @@ -74,11 +74,12 @@ SECTIONS    PROVIDE (erotext = .);    .reloc   :    { -    *(.got)      _GOT2_TABLE_ = .; -    *(.got2) +    KEEP(*(.got2)) +    KEEP(*(.got)) +    PROVIDE(_GLOBAL_OFFSET_TABLE_ = . + 4);      _FIXUP_TABLE_ = .; -    *(.fixup) +    KEEP(*(.fixup))    }    __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1;    __fixup_entries = (. - _FIXUP_TABLE_)>>2; |