GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / cfe / cfe / applets / cfe_applet.lds
blobe1b33e9e89b4f7cbe84ab42a5513804842ef2873
1 OUTPUT_ARCH(mips)
2 ENTRY(__start)
3 SECTIONS
5   . = 0x20000000;
6 /*  . = 0x81000000; */
7   .text : 
8     {
9      _ftext = . ;
10     *(.init)
11      eprol  =  .;
12     *(.text)
13     *(.fini)
14     *(.rodata)
15      _etext  =  .;
16    }
18   .data :
19    {
20    _gp = ALIGN(16) + 0x8000;
21    _fdata = . ;
22     *(.data)
23     CONSTRUCTORS
24     *(.sdata)
25    }
26    _edata  =  .;
27    _fbss = .;
28   .sbss : {
29     *(.sbss)
30     *(.scommon)
31   }
32   .bss : {
33     *(.bss)
34     *(COMMON)
35   }
36    _end = .;