faf9bd2295bfa2e18b01ed5b92b5ff8d9fb352b8
[openwrt/svn-archive/archive.git] / openwrt / target / linux / image / aruba / lzma-loader / src / lzma.lds
1 OUTPUT_ARCH(mips)
2 ENTRY(_start)
3 SECTIONS
4 {
5 /* Read-only sections, merged into text segment: */
6 . = 0x81000000;
7 .text :
8 {
9 _ftext = . ;
10 *(.text)
11 *(.rodata)
12 lzma_start = .;
13 kernel.o
14 lzma_end = .;
15 } =0
16
17 .reginfo : { *(.reginfo) }
18
19 .bss :
20 {
21 *(.bss)
22 }
23 }