split wlcompat package in HEAD, too
[openwrt-10.03/.git] / target / linux / image / ar7 / src / ld.script.in
1         OUTPUT_FORMAT("@@OUTPUT_FORMAT@@")
2         OUTPUT_ARCH(mips)
3 ENTRY(tikernelunzip)
4         SECTIONS
5 {
6
7         /* Allocate memory space on top of kernel bss space */
8         . = _fbss;
9         .text :
10         {
11                 *(.text)
12                         *(.rodata)
13                         *(.rodata1)
14                         *(.gnu.warning)
15                         *(.text.init)
16                         *(.data.init)
17         }                    
18
19         .data :
20         {
21                 *(*)
22         }
23
24 bss :
25         {
26                 inflate_bss_start = .;
27                 *(.dynbss)
28                         *(.bss)
29                         *(COMMON)
30                         *(.sbss)
31                         *(.scommon)
32                         inflate_bss_end = .;
33                 . = ALIGN (0x8000);
34                 inflate_slide_window = .;
35                 . += 0x8000;  /* slide window is 8000h */
36                 inflate_free_memory_start = .;
37         }
38
39
40
41 }