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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/boot/bootp/bootp.lds
  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.   . = 0;
  15.   _text = .;
  16.   .text : {
  17.    _stext = .;
  18.    _start = .;
  19.    init.o(.start)
  20.    kernel_start = .;
  21.    kernel.o
  22.    kernel_len = . - kernel_start;
  23.    . = ALIGN(32);
  24.    *(.text)
  25.    initrd_start = .;
  26.    initrd.o
  27.    initrd_len = . - initrd_start;
  28.    . = ALIGN(32);
  29.    _etext = .;
  30.   }
  31.   
  32.   .stab 0 : { *(.stab) }
  33.   .stabstr 0 : { *(.stabstr) }
  34.   .stab.excl 0 : { *(.stab.excl) }
  35.   .stab.exclstr 0 : { *(.stab.exclstr) }
  36.   .stab.index 0 : { *(.stab.index) }
  37.   .stab.indexstr 0 : { *(.stab.indexstr) }
  38.   .comment 0 : { *(.comment) }
  39. }