Entry point is now configurable via a Makefile variable. Entry point is detected...
[openwrt-10.03/.git] / target / linux / adm5120-2.6 / image / lzma-loader / src / loader.lds.in
1 OUTPUT_ARCH(mips)
2 SECTIONS {
3         .text : {
4                 _code_start = .;
5                 *(.text)
6                 *(.text.*)
7                 *(.rodata)
8                 *(.rodata.*)
9                 _code_end = .;
10         }
11
12         .data : {
13                 *(.data)
14                 *(.data.*)
15         }
16
17         .bss : {
18                 *(.bss)
19                 *(.bss.*)
20         }
21
22         . = ALIGN(16);
23         . = . + 8192;
24         _stack = .;
25
26         workspace = .;
27 }