]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
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 bf2ed0485212642c7c4aa0976df677144c7216bc..57c37deb8928a4db7080e9b9f51f0cab0fec232d 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 81728db25c3118ca13d48d5a46731c38fc9cd1f4..a729c52626661f702b4409e11dfff2603f649c03 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;