GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / cris / boot / compressed / decompress_v10.lds
blobe80f4594d54300cf22480725fd80856eddd2f04b
1 /* OUTPUT_FORMAT(elf32-us-cris) */
2 OUTPUT_FORMAT(elf32-cris)
4 MEMORY 
5         {
6         dram : ORIGIN = 0x40700000,
7                LENGTH = 0x00100000
8         }
10 SECTIONS
12         .text :
13         {
14                 _stext = . ;
15                 *(.text)
16                 *(.rodata)
17                 *(.rodata.*)
18                 _etext = . ;
19         } > dram
20         .data :
21         {
22                 *(.data)
23                 _edata = . ;
24         } > dram
25         .bss :
26         {
27                 *(.bss)
28                 _end = ALIGN( 0x10 ) ;
29         } > dram