svn commit: r217656 - head/sys/conf

Warner Losh imp at FreeBSD.org
Thu Jan 20 19:24:51 UTC 2011


Author: imp
Date: Thu Jan 20 19:24:50 2011
New Revision: 217656
URL: http://svn.freebsd.org/changeset/base/217656

Log:
  In fact, we don't need any of these __DYNAMIC.  it is a.out leftover and commented out.

Modified:
  head/sys/conf/ldscript.mips.octeon1
  head/sys/conf/ldscript.powerpc
  head/sys/conf/ldscript.powerpc64
  head/sys/conf/ldscript.sparc64

Modified: head/sys/conf/ldscript.mips.octeon1
==============================================================================
--- head/sys/conf/ldscript.mips.octeon1	Thu Jan 20 19:20:23 2011	(r217655)
+++ head/sys/conf/ldscript.mips.octeon1	Thu Jan 20 19:24:50 2011	(r217656)
@@ -1,8 +1,6 @@
 /* $FreeBSD$ */
 
 ENTRY(_start)
-   __DYNAMIC = 0;
-PROVIDE (_DYNAMIC = 0);
 
 PHDRS {
 	text PT_LOAD FLAGS(0x7);

Modified: head/sys/conf/ldscript.powerpc
==============================================================================
--- head/sys/conf/ldscript.powerpc	Thu Jan 20 19:20:23 2011	(r217655)
+++ head/sys/conf/ldscript.powerpc	Thu Jan 20 19:24:50 2011	(r217656)
@@ -4,8 +4,6 @@ OUTPUT_FORMAT("elf32-powerpc", "elf32-po
 OUTPUT_ARCH(powerpc)
 ENTRY(__start)
 SEARCH_DIR(/usr/lib);
-/* Do we need any of these for elf?
-   __DYNAMIC = 0;    */
 PROVIDE (__stack = 0);
 SECTIONS
 {

Modified: head/sys/conf/ldscript.powerpc64
==============================================================================
--- head/sys/conf/ldscript.powerpc64	Thu Jan 20 19:20:23 2011	(r217655)
+++ head/sys/conf/ldscript.powerpc64	Thu Jan 20 19:24:50 2011	(r217656)
@@ -4,8 +4,6 @@ OUTPUT_FORMAT("elf64-powerpc", "elf64-po
 OUTPUT_ARCH(powerpc)
 ENTRY(__start)
 SEARCH_DIR(/usr/lib);
-/* Do we need any of these for elf?
-   __DYNAMIC = 0;    */
 PROVIDE (__stack = 0);
 SECTIONS
 {

Modified: head/sys/conf/ldscript.sparc64
==============================================================================
--- head/sys/conf/ldscript.sparc64	Thu Jan 20 19:20:23 2011	(r217655)
+++ head/sys/conf/ldscript.sparc64	Thu Jan 20 19:24:50 2011	(r217656)
@@ -4,8 +4,6 @@ OUTPUT_FORMAT("elf64-sparc", "elf64-spar
 OUTPUT_ARCH(sparc:v9)
 ENTRY(_start)
 SEARCH_DIR(/usr/lib);
-/* Do we need any of these for elf?
-   __DYNAMIC = 0;    */
 SECTIONS
 {
   /* Read-only sections, merged into text segment: */


More information about the svn-src-head mailing list