Root/target/linux/adm5120/image/lzma-loader/src/loader.lds

1OUTPUT_ARCH(mips)
2SECTIONS {
3    .text : {
4        _code_start = .;
5        *(.text)
6        *(.text.*)
7        *(.rodata)
8        *(.rodata.*)
9        . = ALIGN(16);
10        *(.data.lzma)
11    }
12
13    .data : {
14        *(.data)
15        *(.data.*)
16    }
17    _code_end = .;
18
19    .bss : {
20        *(.bss)
21        *(.bss.*)
22    }
23
24    . = ALIGN(16);
25    . = . + 8192;
26    _stack = .;
27
28    workspace = .;
29}
30

Archive Download this file



interactive