brcm63xx: rename target to bcm63xx
[openwrt/staging/wigyori.git] / target / linux / bcm63xx / 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 *(.data.lzma)
10 }
11
12 . = ALIGN(32);
13 .data : {
14 *(.data)
15 *(.data.*)
16 }
17
18 . = ALIGN(32);
19 _code_end = .;
20
21 _bss_start = .;
22 .bss : {
23 *(.bss)
24 *(.bss.*)
25 }
26
27 . = ALIGN(32);
28 _bss_end = .;
29
30 . = . + 8192;
31 _stack = .;
32
33 workspace = .;
34 }