Home | History | Annotate | Line # | Download | only in conf
      1  1.1  itojun OUTPUT_FORMAT("coff-sh")
      2  1.1  itojun OUTPUT_ARCH(sh)
      3  1.1  itojun MEMORY
      4  1.1  itojun {
      5  1.1  itojun   ram : o = 0x8C010000, l = 4M
      6  1.1  itojun }
      7  1.1  itojun SECTIONS
      8  1.1  itojun {
      9  1.1  itojun   .text :
     10  1.1  itojun   {
     11  1.1  itojun     *(.text)
     12  1.1  itojun     *(.strings)
     13  1.2   lukem      _etext = . ;
     14  1.1  itojun   }  > ram
     15  1.1  itojun   .data :
     16  1.1  itojun   {
     17  1.1  itojun     *(.data)
     18  1.2   lukem      _edata = . ;
     19  1.1  itojun   }  > ram
     20  1.1  itojun   .bss :
     21  1.1  itojun   {
     22  1.2   lukem      _bss_start = . ;
     23  1.1  itojun     *(.bss)
     24  1.1  itojun     *(COMMON)
     25  1.2   lukem      _end = . ;
     26  1.1  itojun   }  > ram
     27  1.1  itojun   .stack   :
     28  1.1  itojun   {
     29  1.2   lukem      _stack = . ;
     30  1.1  itojun     *(.stack)
     31  1.1  itojun   }  > ram
     32  1.1  itojun   .stab 0 (NOLOAD) :
     33  1.1  itojun   {
     34  1.1  itojun     *(.stab)
     35  1.1  itojun   }
     36  1.1  itojun   .stabstr 0 (NOLOAD) :
     37  1.1  itojun   {
     38  1.1  itojun     *(.stabstr)
     39  1.1  itojun   }
     40  1.1  itojun }
     41