powerpc, 8xx: Fix fallout from "Fixup all 8xx u-boot.lds scripts"
authorJoakim Tjernlund <Joakim.Tjernlund@transmode.se>
Sun, 24 Apr 2011 08:29:32 +0000 (10:29 +0200)
committerWolfgang Denk <wd@denx.de>
Sun, 24 Apr 2011 20:49:16 +0000 (22:49 +0200)
Two linker scripts for 8xx was missed.

Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
board/matrix_vision/mvsmr/u-boot.lds
board/rsdproto/u-boot.lds

index bf2ed04..57c37de 100644 (file)
@@ -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    :
index 81728db..a729c52 100644 (file)
@@ -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;