summaryrefslogtreecommitdiff
path: root/examples/mips.lds
diff options
context:
space:
mode:
authorBen Warren <bwarren@saruman.qstreams.net>2007-11-02 11:20:41 -0400
committerBen Warren <bwarren@saruman.qstreams.net>2007-11-02 11:20:41 -0400
commite34a0438923a55aeb3fae8fc31ff41230969abaf (patch)
tree4be3ed35fbd50b56ac0cebecac2899d6527edbf0 /examples/mips.lds
parent31548249decf18a6b877a18436b6139dd483fe4a (diff)
parente60adeac2d8fa30258e1706bb342a3363526e8d7 (diff)
Merge git://www.denx.de/git/u-boot
Diffstat (limited to 'examples/mips.lds')
-rw-r--r--examples/mips.lds14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/mips.lds b/examples/mips.lds
index 9d9849bf5c..a7707287a2 100644
--- a/examples/mips.lds
+++ b/examples/mips.lds
@@ -39,14 +39,14 @@ SECTIONS
. = ALIGN(4);
.data : { *(.data) }
- . = ALIGN(4);
- .sdata : { *(.sdata) }
+ . = .;
+ _gp = ALIGN(16) + 0x7ff0;
- _gp = ALIGN(16);
-
- __got_start = .;
- .got : { *(.got) }
- __got_end = .;
+ .got : {
+ __got_start = .;
+ *(.got)
+ __got_end = .;
+ }
.sdata : { *(.sdata) }