strip the kernel version suffix from target directories, except for brcm-2.4 (the...
[openwrt/staging/florian.git] / target / linux / adm5120 / image / lzma-loader / src / loader.lds
1 OUTPUT_ARCH(mips)
2 SECTIONS {
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 }