enable start-stop-daemon by default, i want to use this to clean up a few init script...
[openwrt/openwrt.git] / target / linux / adm5120-2.6 / 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 }