* emulparams/criself.sh (EXECUTABLE_SYMBOLS): Cannot provide
authorHans-Peter Nilsson <hp@axis.com>
Thu, 5 Apr 2001 20:37:54 +0000 (20:37 +0000)
committerHans-Peter Nilsson <hp@axis.com>
Thu, 5 Apr 2001 20:37:54 +0000 (20:37 +0000)
correct value of __Stext here.
(TEXT_START_SYMBOLS): Define; always define __Stext, to start of
.startup section.

* emulparams/crislinux.sh: Remove FIXME.

ld/ChangeLog
ld/emulparams/criself.sh
ld/emulparams/crislinux.sh

index 9e7368aa9beeb295c7da32e061f9a2ea900e0c5e..2cea2f13b7224421c0b6106382d1b551750314a7 100644 (file)
@@ -1,3 +1,12 @@
+2001-04-05  Hans-Peter Nilsson  <hp@axis.com>
+
+       * emulparams/criself.sh (EXECUTABLE_SYMBOLS): Cannot provide
+       correct value of __Stext here.
+       (TEXT_START_SYMBOLS): Define; always define __Stext, to start of
+       .startup section.
+
+       * emulparams/crislinux.sh: Remove FIXME.
+
 2001-04-02  Alan Modra  <alan@linuxcare.com.au>
 
        * emulparams/hppalinux.sh (MAXPAGESIZE): Set to 64k.
index 4acd56a35b5e6acc7c4d38a620caf895c63ac9f3..b2576342a1a1bea306c9b5a6216ea700af5a9cb4 100644 (file)
@@ -15,14 +15,16 @@ TEXT_START_ADDR=0
 # Put crt0 for flash/eprom etc. in this section.
 INITIAL_READONLY_SECTIONS='.startup : { KEEP(*(.startup)) }'
 
-# TEXT_START_SYMBOLS doesn't get what we want which is the start of
-# all read-only sections; there's at least .init and .fini before it.
-# We have to resort to trickery.
-#
+# Setting __Stext to . in TEXT_START_SYMBOLS doesn't get what we want
+# most of the time, which is the start of all read-only sections;
+# there's at least .startup and .init before it.  We have to resort to
+# trickery.  Note that __Stext is always defined, not PROVIDE:d, since
+# external tools look for it.
+TEXT_START_SYMBOLS='__Stext = ADDR (.startup);'
+
 # The __start dance is to get us through assumptions about entry
 # symbols, and to clear _start for normal use with sane programs.
 EXECUTABLE_SYMBOLS='
-PROVIDE (__Stext = .);
 __start = DEFINED(__start) ? __start : 
   DEFINED(_start) ? _start : 
     DEFINED(start) ? start :
index 6be4f5803f679dd2e518946302b80142d8f5d196..c5ff27f5686ce3ddbb93e60d0521521c77cdd659 100644 (file)
@@ -16,8 +16,6 @@ TEXT_START_ADDR=0x80000
 
 MAXPAGESIZE=8192
 
-# FIXME: GOT, PLT...
-
 # We don't do the hoops through DEFINED to provide [_]*start, as it
 # doesn't work with --gc-sections, and the start-name is pretty fixed
 # anyway.