import of upstream 2.4.34.4 from kernel.org
[linux-2.4.git] / arch / arm / boot / bootp / bootp.lds
1 /*
2  *  linux/arch/arm/boot/bootp/bootp.lds
3  *
4  *  Copyright (C) 2000-2002 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    kernel.o
20    . = ALIGN(32);
21    initrd_start = .;
22    initrd.o
23    initrd_len = . - initrd_start;
24    . = ALIGN(32);
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) }
35 }