Home | History | Annotate | Line # | Download | only in conf
stand.ldscript revision 1.1.2.2
      1  1.1.2.2  thorpej /* $NetBSD: stand.ldscript,v 1.1.2.2 1997/10/14 10:17:20 thorpej Exp $ */
      2  1.1.2.2  thorpej 
      3  1.1.2.2  thorpej /*  ldscript for NetBSD/mips kernels */
      4  1.1.2.2  thorpej OUTPUT_FORMAT("elf32-littlemips", "elf32-bigmips",
      5  1.1.2.2  thorpej 	      "elf32-littlemips")
      6  1.1.2.2  thorpej OUTPUT_ARCH(mips)
      7  1.1.2.2  thorpej ENTRY(_start)
      8  1.1.2.2  thorpej SECTIONS
      9  1.1.2.2  thorpej {
     10  1.1.2.2  thorpej   /*  Read-only sections, merged into text segment.  Assumes the
     11  1.1.2.2  thorpej       kernel Makefile sets the start address via -Ttext.  */
     12  1.1.2.2  thorpej   .text      :
     13  1.1.2.2  thorpej   {
     14  1.1.2.2  thorpej     _ftext = . ;
     15  1.1.2.2  thorpej     *(.text)
     16  1.1.2.2  thorpej     *(.gnu.warning)
     17  1.1.2.2  thorpej   } =0
     18  1.1.2.2  thorpej   _etext = .;
     19  1.1.2.2  thorpej   PROVIDE (etext = .);
     20  1.1.2.2  thorpej   .rodata    : { *(.rodata)  }
     21  1.1.2.2  thorpej   .data    :
     22  1.1.2.2  thorpej   {
     23  1.1.2.2  thorpej     _fdata = . ;
     24  1.1.2.2  thorpej     *(.data)
     25  1.1.2.2  thorpej     CONSTRUCTORS
     26  1.1.2.2  thorpej   }
     27  1.1.2.2  thorpej   _gp = ALIGN(16);
     28  1.1.2.2  thorpej   .lit8 : { *(.lit8) }
     29  1.1.2.2  thorpej   .lit4 : { *(.lit4) }
     30  1.1.2.2  thorpej   .sdata     : { *(.sdata) }
     31  1.1.2.2  thorpej   _edata  =  .;
     32  1.1.2.2  thorpej   PROVIDE (edata = .);
     33  1.1.2.2  thorpej   __bss_start = .;
     34  1.1.2.2  thorpej   _fbss = .;
     35  1.1.2.2  thorpej   .sbss      : { *(.sbss) *(.scommon) }
     36  1.1.2.2  thorpej   .bss       :
     37  1.1.2.2  thorpej   {
     38  1.1.2.2  thorpej    *(.bss)
     39  1.1.2.2  thorpej    *(COMMON)
     40  1.1.2.2  thorpej   }
     41  1.1.2.2  thorpej   _end = . ;
     42  1.1.2.2  thorpej   PROVIDE (end = .);
     43  1.1.2.2  thorpej }
     44