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

嵌入式Linux

开发平台:

Unix_Linux

  1. OUTPUT_FORMAT("elf64-alpha")
  2. ENTRY(__start)
  3. SECTIONS
  4. {
  5.   . = 0x20000000;
  6.   .text : { *(.text) }
  7.   _etext = .;
  8.   PROVIDE (etext = .);
  9.   .rodata : { *(.rodata) *(.rodata.*) }
  10.   .data : { *(.data) CONSTRUCTORS }
  11.   .got : { *(.got) }
  12.   .sdata : { *(.sdata) }
  13.   _edata = .;
  14.   PROVIDE (edata = .);
  15.   .sbss : { *(.sbss) *(.scommon) }
  16.   .bss : { *(.bss) *(COMMON) }
  17.   _end = . ;
  18.   PROVIDE (end = .);
  19.   .mdebug 0 : { *(.mdebug) }
  20.   .note 0 : { *(.note) }
  21.   .comment 0 : { *(.comment) }
  22. }