xref: /OK3568_Linux_fs/kernel/arch/arm/boot/bootp/bootp.lds (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun/*
2*4882a593Smuzhiyun *  linux/arch/arm/boot/bootp/bootp.lds
3*4882a593Smuzhiyun *
4*4882a593Smuzhiyun *  Copyright (C) 2000-2002 Russell King
5*4882a593Smuzhiyun *
6*4882a593Smuzhiyun * This program is free software; you can redistribute it and/or modify
7*4882a593Smuzhiyun * it under the terms of the GNU General Public License version 2 as
8*4882a593Smuzhiyun * published by the Free Software Foundation.
9*4882a593Smuzhiyun */
10*4882a593SmuzhiyunOUTPUT_ARCH(arm)
11*4882a593SmuzhiyunENTRY(_start)
12*4882a593SmuzhiyunSECTIONS
13*4882a593Smuzhiyun{
14*4882a593Smuzhiyun  . = 0;
15*4882a593Smuzhiyun  .text : {
16*4882a593Smuzhiyun   _stext = .;
17*4882a593Smuzhiyun   *(.start)
18*4882a593Smuzhiyun   *(.text)
19*4882a593Smuzhiyun   initrd_size = initrd_end - initrd_start;
20*4882a593Smuzhiyun   _etext = .;
21*4882a593Smuzhiyun  }
22*4882a593Smuzhiyun
23*4882a593Smuzhiyun  .stab 0 : { *(.stab) }
24*4882a593Smuzhiyun  .stabstr 0 : { *(.stabstr) }
25*4882a593Smuzhiyun  .stab.excl 0 : { *(.stab.excl) }
26*4882a593Smuzhiyun  .stab.exclstr 0 : { *(.stab.exclstr) }
27*4882a593Smuzhiyun  .stab.index 0 : { *(.stab.index) }
28*4882a593Smuzhiyun  .stab.indexstr 0 : { *(.stab.indexstr) }
29*4882a593Smuzhiyun  .comment 0 : { *(.comment) }
30*4882a593Smuzhiyun}
31