GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / h8300 / boot / compressed / vmlinux.lds
bloba0a3a0ed54ef17450ae9dbe7f7a38e0789098fdd
1 SECTIONS
3         .text :
4         {
5         __stext = . ;
6         __text = .;
7                *(.text..startup)
8                *(.text)
9         __etext = . ;
10         }
12         .rodata :
13         {
14                 *(.rodata)
15         }
16         .data :
18         {
19         __sdata = . ;
20         ___data_start = . ;
21                 *(.data.*)
22         }
23         .bss :
24         {
25         . = ALIGN(0x4) ;
26         __sbss = . ;
27                 *(.bss*)
28         . = ALIGN(0x4) ;
29         __ebss = . ;
30         __end = . ;
31         }