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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* ld script to make hppa Linux kernel */
  2. OUTPUT_FORMAT("elf32-hppa")
  3. OUTPUT_ARCH(hppa)
  4. ENTRY(_stext)
  5. SECTIONS
  6. {
  7. /* right now use 0x10000/0x11000, later when we don't use Console and
  8.  * Boot-Device IODC, we will change this to 0x8000 !!!
  9.  */
  10.   . = 0xc0100000;   
  11. /* . = 0x10000;  */
  12.   _text = .; /* Text and read-only data */
  13.   .text BLOCK(16) : {
  14. *(.text*)
  15. *(.PARISC.unwind)
  16. *(.fixup)
  17. *(.lock.text) /* out-of-line lock text */
  18. *(.gnu.warning)
  19. } = 0
  20.   . = ALIGN(16);
  21.   .rodata : { *(.rodata) *(.rodata.*) }
  22.   .kstrtab : { *(.kstrtab) }
  23.   _etext = .; /* End of text section */
  24.   
  25.   .data BLOCK(8192) : { /* Data without special */
  26. data_start = .;
  27. *(.data)
  28. }
  29.   . = ALIGN(16); /* Exception table */
  30.   __start___ex_table = .;
  31.   __ex_table : { *(__ex_table) }
  32.   __stop___ex_table = .;
  33.   __start___ksymtab = .; /* Kernel symbol table */
  34.   __ksymtab : { *(__ksymtab) }
  35.   __stop___ksymtab = .;
  36.   . = ALIGN(16384);
  37.   __init_begin = .;
  38.   .init.text : { *(.init.text) }
  39.   .init.data : { *(.init.data) }
  40.   . = ALIGN(16);
  41.   __setup_start = .;
  42.   .setup.init : { *(.setup.init) }
  43.   __setup_end = .;
  44.   __initcall_start = .;
  45.   .initcall.init : { *(.initcall.init) } 
  46.   __initcall_end = .;
  47.   __init_end = .;
  48.   init_task BLOCK(16384) : { *(init_task) }  /* The initial task and kernel stack */
  49.   _edata = .; /* End of data section */
  50.   .bss : { *(.bss) *(COMMON) } /* BSS */
  51.   _end = . ;
  52.   /* Stabs debugging sections.  */
  53.   .stab 0 : { *(.stab) }
  54.   .stabstr 0 : { *(.stabstr) }
  55.   .stab.excl 0 : { *(.stab.excl) }
  56.   .stab.exclstr 0 : { *(.stab.exclstr) }
  57.   .stab.index 0 : { *(.stab.index) }
  58.   .stab.indexstr 0 : { *(.stab.indexstr) }
  59.   .comment 0 : { *(.comment) }
  60.   .note 0 : { *(.note) }
  61. }