add global proxy / cache settings to httpget class. This removes the need of passing...
[Rockbox.git] / flash / minimon / minimon.lds
blobdbdbdc3faa5b06163037206e9a7cd91fa434a8e5
1 OUTPUT_FORMAT(elf32-sh)
2 INPUT(minimon.o)
4 MEMORY
6         DRAM : ORIGIN = 0x09000000, LENGTH = 0x200000
9 SECTIONS
11         .startvector :
12         {
13                 *(.startvector)    
14                 . = ALIGN(0x4);
15         } > DRAM
17         .got :
18         {
19            *(.got)
20         } > DRAM
22         .got.plt :
23         {
24            *(.got.plt)
25         } > DRAM
27         .rela.got :
28         {
29            *(.rela.got)
30         } > DRAM
32         .text :    
33         {        
34                 . = ALIGN(0x200);
35                 *(.entry)
36                 *(.text)        
37                 . = ALIGN(0x4);
38         } > DRAM
39         
40         .data :
41         {
42                 *(.data)
43         } > DRAM
45         .rodata :
46         {
47                 *(.rodata)
48                 . = ALIGN(0x4);
49         } > DRAM
51         .bss :
52         {
53            *(.bss)
54         } > DRAM
56         .stack :
57         {
58            *(.stack)
59         } > DRAM