diff options
Diffstat (limited to 'board/rsdproto/u-boot.lds')
-rw-r--r-- | board/rsdproto/u-boot.lds | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/board/rsdproto/u-boot.lds b/board/rsdproto/u-boot.lds index 81728db..a729c52 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; |