- pre3:
[davej-history.git] / arch / arm / boot / bootp / bootp.lds
blob0d5a3ce75a3b8b6c8dfb335d5c10a057b0633b60
1 OUTPUT_ARCH(arm)
2 ENTRY(_start)
3 SECTIONS
5   . = 0;
6   _text = .;
7   .text : {
8    _stext = .;
9    _start = .;
10    init.o(.start)
11    kernel_start = .;
12    kernel.o
13    kernel_len = . - kernel_start;
14    . = ALIGN(32);
15    *(.text)
16    initrd_start = .;
17    initrd.o
18    initrd_len = . - initrd_start;
19    . = ALIGN(32);
20    _etext = .;
21   }
22   
23   .stab 0 : { *(.stab) }
24   .stabstr 0 : { *(.stabstr) }
25   .stab.excl 0 : { *(.stab.excl) }
26   .stab.exclstr 0 : { *(.stab.exclstr) }
27   .stab.index 0 : { *(.stab.index) }
28   .stab.indexstr 0 : { *(.stab.indexstr) }
29   .comment 0 : { *(.comment) }