bootloader.lds
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. OUTPUT_FORMAT("elf64-ia64-little")
  2. OUTPUT_ARCH(ia64)
  3. ENTRY(_start)
  4. SECTIONS
  5. {
  6.   /* Read-only sections, merged into text segment: */
  7.   . = 0x100000;
  8.   _text = .;
  9.   .text : { *(__ivt_section) *(.text) }
  10.   _etext = .;
  11.   /* Global data */
  12.   _data = .;
  13.   .rodata : { *(.rodata) *(.rodata.*) }
  14.   .data    : { *(.data) *(.gnu.linkonce.d*) CONSTRUCTORS }
  15.   __gp = ALIGN (8) + 0x200000;
  16.   .got           : { *(.got.plt) *(.got) }
  17.   /* We want the small data sections together, so single-instruction offsets
  18.      can access them all, and initialized data all before uninitialized, so
  19.      we can shorten the on-disk segment size.  */
  20.   .sdata     : { *(.sdata) }
  21.   _edata  =  .;
  22.   _bss = .;
  23.   .sbss      : { *(.sbss) *(.scommon) }
  24.   .bss       : { *(.bss) *(COMMON) }
  25.   . = ALIGN(64 / 8);
  26.   _end = . ;
  27.   /* Stabs debugging sections.  */
  28.   .stab 0 : { *(.stab) }
  29.   .stabstr 0 : { *(.stabstr) }
  30.   .stab.excl 0 : { *(.stab.excl) }
  31.   .stab.exclstr 0 : { *(.stab.exclstr) }
  32.   .stab.index 0 : { *(.stab.index) }
  33.   .stab.indexstr 0 : { *(.stab.indexstr) }
  34.   .comment 0 : { *(.comment) }
  35.   /* DWARF debug sections.
  36.      Symbols in the DWARF debugging sections are relative to the beginning
  37.      of the section so we begin them at 0.  */
  38.   /* DWARF 1 */
  39.   .debug          0 : { *(.debug) }
  40.   .line           0 : { *(.line) }
  41.   /* GNU DWARF 1 extensions */
  42.   .debug_srcinfo  0 : { *(.debug_srcinfo) }
  43.   .debug_sfnames  0 : { *(.debug_sfnames) }
  44.   /* DWARF 1.1 and DWARF 2 */
  45.   .debug_aranges  0 : { *(.debug_aranges) }
  46.   .debug_pubnames 0 : { *(.debug_pubnames) }
  47.   /* DWARF 2 */
  48.   .debug_info     0 : { *(.debug_info) }
  49.   .debug_abbrev   0 : { *(.debug_abbrev) }
  50.   .debug_line     0 : { *(.debug_line) }
  51.   .debug_frame    0 : { *(.debug_frame) }
  52.   .debug_str      0 : { *(.debug_str) }
  53.   .debug_loc      0 : { *(.debug_loc) }
  54.   .debug_macinfo  0 : { *(.debug_macinfo) }
  55.   /* SGI/MIPS DWARF 2 extensions */
  56.   .debug_weaknames 0 : { *(.debug_weaknames) }
  57.   .debug_funcnames 0 : { *(.debug_funcnames) }
  58.   .debug_typenames 0 : { *(.debug_typenames) }
  59.   .debug_varnames  0 : { *(.debug_varnames) }
  60.   /* These must appear regardless of  .  */
  61. }