summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Kurbjun <kkurbjun@gmail.com>2009-03-11 03:46:24 +0000
committerKarl Kurbjun <kkurbjun@gmail.com>2009-03-11 03:46:24 +0000
commiteddc4ee13bdd734aeb9cf6f8d0231d662235cc81 (patch)
treec4dd09d42c4c0f32992889ceb10e03ae264349eb
parent3c7ada594142b44bfb543f7ec693ac7250176287 (diff)
downloadrockbox-eddc4ee13bdd734aeb9cf6f8d0231d662235cc81.tar.gz
rockbox-eddc4ee13bdd734aeb9cf6f8d0231d662235cc81.zip
Ladies and Gentlemen we now have sound through the codecs on the M:Robe 500i (DM320)\!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20285 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/plugin.lds11
1 files changed, 5 insertions, 6 deletions
diff --git a/apps/plugins/plugin.lds b/apps/plugins/plugin.lds
index e7ed9b1844..69601d96a2 100644
--- a/apps/plugins/plugin.lds
+++ b/apps/plugins/plugin.lds
@@ -84,9 +84,8 @@ OUTPUT_FORMAT(elf32-littlemips)
84#define IRAMSIZE 0 84#define IRAMSIZE 0
85#elif CONFIG_CPU==DM320 85#elif CONFIG_CPU==DM320
86#define DRAMORIG 0x00900000 + STUBOFFSET 86#define DRAMORIG 0x00900000 + STUBOFFSET
87#define IRAMORIG DRAMORIG
88#define IRAMSIZE 0x4000
89#define IRAM DRAM 87#define IRAM DRAM
88#define IRAMSIZE 0
90#elif defined(CPU_TCC780X) || defined(CPU_TCC77X) 89#elif defined(CPU_TCC780X) || defined(CPU_TCC77X)
91#define DRAMORIG 0x20000000 90#define DRAMORIG 0x20000000
92/*#define IRAMORIG 0x1000c000 91/*#define IRAMORIG 0x1000c000
@@ -153,7 +152,7 @@ SECTIONS
153 { 152 {
154 *(.text*) 153 *(.text*)
155#if defined(IRAMSIZE) && IRAMSIZE == 0 154#if defined(IRAMSIZE) && IRAMSIZE == 0
156 *(.icode) 155 *(.icode)
157#endif 156#endif
158#ifdef CPU_ARM 157#ifdef CPU_ARM
159 *(.glue_7) 158 *(.glue_7)
@@ -165,7 +164,7 @@ SECTIONS
165 { 164 {
166 *(.rodata*) 165 *(.rodata*)
167#if defined(IRAMSIZE) && IRAMSIZE == 0 166#if defined(IRAMSIZE) && IRAMSIZE == 0
168 *(.irodata) 167 *(.irodata)
169#endif 168#endif
170 . = ALIGN(0x4); 169 . = ALIGN(0x4);
171 } > PLUGIN_RAM 170 } > PLUGIN_RAM
@@ -174,7 +173,7 @@ SECTIONS
174 { 173 {
175 *(.data*) 174 *(.data*)
176#if defined(IRAMSIZE) && IRAMSIZE == 0 175#if defined(IRAMSIZE) && IRAMSIZE == 0
177 *(.idata) 176 *(.idata)
178#endif 177#endif
179 } > PLUGIN_RAM 178 } > PLUGIN_RAM
180 179
@@ -224,7 +223,7 @@ SECTIONS
224 plugin_bss_start = .; 223 plugin_bss_start = .;
225 *(.bss*) 224 *(.bss*)
226#if defined(IRAMSIZE) && IRAMSIZE == 0 225#if defined(IRAMSIZE) && IRAMSIZE == 0
227 *(.ibss) 226 *(.ibss)
228#endif 227#endif
229 *(COMMON) 228 *(COMMON)
230 . = ALIGN(0x4); 229 . = ALIGN(0x4);