Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/mipsco/conf No longer required - now using standard...



details:   https://anonhg.NetBSD.org/src/rev/db45d438a41b
branches:  trunk
changeset: 539343:db45d438a41b
user:      wdk <wdk%NetBSD.org@localhost>
date:      Fri Nov 15 10:16:41 2002 +0000

description:
No longer required - now using standard kern.ldscript from sys/arch/mips

diffstat:

 sys/arch/mipsco/conf/kern.ldscript |  65 --------------------------------------
 1 files changed, 0 insertions(+), 65 deletions(-)

diffs (69 lines):

diff -r 3fa679ee7291 -r db45d438a41b sys/arch/mipsco/conf/kern.ldscript
--- a/sys/arch/mipsco/conf/kern.ldscript        Fri Nov 15 10:12:40 2002 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,65 +0,0 @@
-/*     $NetBSD: kern.ldscript,v 1.1 2000/08/12 22:58:01 wdk Exp $      */
-
-/*  ldscript for NetBSD/mips kernels */
-OUTPUT_FORMAT("elf32-bigmips", "elf32-bigmips", "elf32-littlemips")
-OUTPUT_ARCH(mips)
-ENTRY(_start)
-SEARCH_DIR(/lib);
-/* Do we need any of these?
-   __DYNAMIC = 0;    */
-_DYNAMIC_LINK = 0;
-SECTIONS
-{
-  /*  Read-only sections, merged into text segment.  Assumes the
-      kernel Makefile sets the start address via -Ttext.  */
-  .text      :
-  {
-    _ftext = . ;
-    *(.text)
-    *(.gnu.warning)
-  } =0
-  _etext = .;
-  PROVIDE (etext = .);
-  .rdata    : { *(.rodata)  }
-  .data    :
-  {
-    _fdata = . ;
-    *(.data)
-    CONSTRUCTORS
-  }
-  _gp = ALIGN(16) + 0x7ff0;
-  .lit8 : { *(.lit8) }
-  .lit4 : { *(.lit4) }
-  .sdata     : { *(.sdata) }
-  _edata  =  .;
-  PROVIDE (edata = .);
-  __bss_start = .;
-  _fbss = .;
-  .bss       :
-  {
-   *(.bss)
-   *(COMMON)
-   *(.sbss)
-   *(.scommon)
-  }
-  _end = . ;
-  PROVIDE (end = .);
-  /* These are needed for ELF backends which have not yet been
-     converted to the new style linker.  */
-  .stab 0 : { *(.stab) }
-  .stabstr 0 : { *(.stabstr) }
-  /* DWARF debug sections.
-     Symbols in the .debug DWARF section are relative to the beginning of the
-     section so we begin .debug at 0.  It's not clear yet what needs to happen
-     for the others.   */
-  .debug          0 : { *(.debug) }
-  .debug_srcinfo  0 : { *(.debug_srcinfo) }
-  .debug_aranges  0 : { *(.debug_aranges) }
-  .debug_pubnames 0 : { *(.debug_pubnames) }
-  .debug_sfnames  0 : { *(.debug_sfnames) }
-  .line           0 : { *(.line) }
-  /* These must appear regardless of  .  */
-  .gptab.sdata : { *(.gptab.data) *(.gptab.sdata) }
-  .gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) }
-  .reginfo : { }  /* Remove this section */
-}



Home | Main Index | Thread Index | Old Index