IRQ handler rewrite by Gabor Juhos, uses C no longer assembly
[openwrt/svn-archive/archive.git] / target / linux / etrax-2.6 / image / e100boot / src / cbl / src / ldscript
1 SECTIONS
2 {
3 . = 0x380000f0;
4 __Stext = .;
5
6 .text :
7 {
8 KEEP (*(.startup))
9 KEEP (*(.text))
10 *(.text.*)
11 KEEP (*(.rodata))
12 *(.rodata.*)
13 } =0
14
15 __Etext = .;
16
17 .data :
18 {
19 __Sdata = .;
20 KEEP (*(.data))
21 *(.data.*)
22 }
23
24 __Edata = .;
25 . = ALIGN (4);
26 __Sbss = .;
27 .bss :
28 {
29 /* The network crc will land in the first four bytes of the
30 bss. Move the variables out of the way. */
31 . = . + 12;
32 *(.bss.*)
33 *(COMMON)
34 }
35
36 __Ebss = .;
37
38 }