ld.script.balo
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. OUTPUT_FORMAT("elf32-bigmips")
  2. OUTPUT_ARCH(mips)
  3. ENTRY(balo_entry)
  4. SECTIONS
  5. {
  6.   /* Read-only sections, merged into text segment: */
  7.   . = 0x80400000;
  8.   .rel.text      : { *(.rel.text) }
  9.   .rela.text     : { *(.rela.text)  }
  10.   .rel.data      : { *(.rel.data) }
  11.   .rela.data     : { *(.rela.data)  }
  12.   .rel.rodata    : { *(.rel.rodata)  }
  13.   .rela.rodata   : { *(.rela.rodata)  }
  14.   .rel.got       : { *(.rel.got) }
  15.   .rela.got      : { *(.rela.got) }
  16.   .rel.ctors     : { *(.rel.ctors) }
  17.   .rela.ctors    : { *(.rela.ctors) }
  18.   .rel.dtors     : { *(.rel.dtors) }
  19.   .rela.dtors    : { *(.rela.dtors) }
  20.   .rel.init      : { *(.rel.init) }
  21.   .rela.init     : { *(.rela.init) }
  22.   .rel.fini      : { *(.rel.fini) }
  23.   .rela.fini     : { *(.rela.fini) }
  24.   .rel.bss       : { *(.rel.bss) }
  25.   .rela.bss      : { *(.rela.bss) }
  26.   .rel.plt       : { *(.rel.plt) }
  27.   .rela.plt      : { *(.rela.plt) }
  28.   .init          : { *(.init) } =0
  29.   .text      :
  30.   {
  31.     _ftext = . ;
  32.     *(.text)
  33.     *(.rodata)
  34.     *(.rodata.*)
  35.     *(.rodata1)
  36.     /* .gnu.warning sections are handled specially by elf32.em.  */
  37.     *(.gnu.warning)
  38.   _etext = .;
  39.   PROVIDE (etext = .);
  40.   /* Startup code */
  41.   . = ALIGN(4096);
  42.   __init_begin = .;
  43.   *(.text.init) 
  44.   *(.data.init) 
  45.   . = ALIGN(4096); /* Align double page for init_task_union */
  46.   __init_end = .;
  47.    *(.fini)    
  48.   *(.reginfo) 
  49.   /* Adjust the address for the data segment.  We want to adjust up to
  50.      the same address within the page on the next page up.  It would
  51.      be more correct to do this:
  52.        . = .;
  53.      The current expression does not correctly handle the case of a
  54.      text segment ending precisely at the end of a page; it causes the
  55.      data segment to skip a page.  The above expression does not have
  56.      this problem, but it will currently (2/95) cause BFD to allocate
  57.      a single segment, combining both text and data, for this case.
  58.      This will prevent the text segment from being shared among
  59.      multiple executions of the program; I think that is more
  60.      important than losing a page of the virtual address space (note
  61.      that no actual memory is lost; the page which is skipped can not
  62.      be referenced).  */
  63.   . = .;
  64.     _fdata = . ;
  65.     *(.data)
  66.     CONSTRUCTORS
  67.   *(.data1) 
  68.   _gp = . + 0x8000;
  69.   *(.lit8) 
  70.   *(.lit4) 
  71.   *(.ctors)   
  72.   *(.dtors)   
  73.   *(.got.plt) *(.got) 
  74.   *(.dynamic) 
  75.   /* We want the small data sections together, so single-instruction offsets
  76.      can access them all, and initialized data all before uninitialized, so
  77.      we can shorten the on-disk segment size.  */
  78.   *(.sdata) 
  79.   _edata  =  .;
  80.   PROVIDE (edata = .);
  81.   __bss_start = .;
  82.   _fbss = .;
  83.    *(.dynbss)
  84.    *(.bss)
  85.    *(COMMON)
  86.   _end = . ;
  87.   PROVIDE (end = .);
  88.    *(.sbss)
  89.    *(.scommon)
  90.   /* These are needed for ELF backends which have not yet been
  91.      converted to the new style linker.  */
  92.   *(.stab) 
  93.   *(.stabstr) 
  94.   /* DWARF debug sections.
  95.      Symbols in the .debug DWARF section are relative to the beginning of the
  96.      section so we begin .debug at 0.  It's not clear yet what needs to happen
  97.      for the others.   */
  98.   *(.debug) 
  99.   *(.debug_srcinfo) 
  100.   *(.debug_aranges) 
  101.   *(.debug_pubnames) 
  102.   *(.debug_sfnames) 
  103.   *(.line) 
  104.   /* These must appear regardless of  .  */
  105.   *(.gptab.data) *(.gptab.sdata) 
  106.   *(.gptab.bss) *(.gptab.sbss) 
  107.   _vmlinux_start = .;
  108.   *(.vmlinux)
  109.   _vmlinux_end = .;
  110.   _ramdisk_start = .;
  111.   *(.ramdisk)
  112.   _ramdisk_end = .;
  113. } =0
  114. }