5ac555bf7db4264bf5fa455bd4a8dc1c94acd32c
[openwrt.git] / target / linux / image / generic / lzma-loader / src / lzma.lds.in
1 OUTPUT_ARCH(mips)
2 ENTRY(_start)
3 SECTIONS
4 {
5 /* Read-only sections, merged into text segment: */
6 . = @LOADADDR@;
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 }
This page took 0.042408 seconds and 3 git commands to generate.