finally move buildroot-ng to trunk
[openwrt.git] / target / 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         . = 0x94200000;
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                 *(.dynbss)
27                 *(COMMON)
28                 *(.bss)
29                 *(.sbss)
30                 *(.scommon)
31                 . = ALIGN (0x8000);
32                 workspace = .;
33         }
34 }