MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / arch / arm / boot / bootp / bootp.lds
blobc39ff79f26a11add98c09389e337c2eb7022dcd0
1 /*
2  *  linux/arch/arm/boot/bootp/bootp.lds
3  *
4  *  Copyright (C) 2000-2002 Russell King
5  *  Modified by Hyok S. Choi, 2004
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  */
12 #ifdef CONFIG_MMU
13 OUTPUT_ARCH(arm)
14 #endif
16 ENTRY(_start)
17 SECTIONS
19   . = 0;
20   .text : {
21    _stext = .;
22    *(.start)
23    *(.text)
24    initrd_size = initrd_end - initrd_start;
25    _etext = .;
26   }
27   
28   .stab 0 : { *(.stab) }
29   .stabstr 0 : { *(.stabstr) }
30   .stab.excl 0 : { *(.stab.excl) }
31   .stab.exclstr 0 : { *(.stab.exclstr) }
32   .stab.index 0 : { *(.stab.index) }
33   .stab.indexstr 0 : { *(.stab.indexstr) }
34   .comment 0 : { *(.comment) }