vmlinux.lds.in
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/boot/compressed/vmlinux.lds.in
  3.  *
  4.  *  Copyright (C) 2000 Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  */
  10. OUTPUT_ARCH(arm)
  11. ENTRY(_start)
  12. SECTIONS
  13. {
  14.   . = LOAD_ADDR;
  15.   _load_addr = .;
  16.   . = TEXT_START;
  17.   _text = .;
  18.   .text : {
  19.     _start = .;
  20.     *(.start)
  21.     *(.text)
  22.     *(.fixup)
  23.     *(.gnu.warning)
  24.     *(.rodata)
  25.     *(.rodata.*)
  26.     *(.glue_7)
  27.     *(.glue_7t)
  28.     input_data = .;
  29.     piggy.o
  30.     input_data_end = .;
  31.     . = ALIGN(4);
  32.   }
  33.   _etext = .;
  34.   .data : {
  35.     *(.data)
  36.   }
  37.   _edata = .;
  38.   . = BSS_START;
  39.   __bss_start = .;
  40.   .bss : {
  41.     *(.bss)
  42.   }
  43.   _end = .;
  44.   .stack : {
  45.     *(.stack)
  46.   }
  47.   .stab 0 : { *(.stab) }
  48.   .stabstr 0 : { *(.stabstr) }
  49.   .stab.excl 0 : { *(.stab.excl) }
  50.   .stab.exclstr 0 : { *(.stab.exclstr) }
  51.   .stab.index 0 : { *(.stab.index) }
  52.   .stab.indexstr 0 : { *(.stab.indexstr) }
  53.   .comment 0 : { *(.comment) }
  54. }