diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-02-22 02:42:58 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-02-22 02:42:58 +0000 |
| commit | 31eda597200bccbfa47dbe05f3f3735590c83a13 (patch) | |
| tree | 05f8ca0bfb6639b7605bfb5c866a0562b1b941f3 /apps | |
| parent | 054253ab337f6ba331f1caacab650f3edeef3720 (diff) | |
| download | rockbox-31eda597200bccbfa47dbe05f3f3735590c83a13.zip rockbox-31eda597200bccbfa47dbe05f3f3735590c83a13.tar.gz rockbox-31eda597200bccbfa47dbe05f3f3735590c83a13.tar.bz2 rockbox-31eda597200bccbfa47dbe05f3f3735590c83a13.tar.xz | |
as3525v2: build normal firmware properly (Clipv2/+)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24840 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/debug_menu.c | 2 | ||||
| -rw-r--r-- | apps/plugins/plugin.lds | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index c8f7cf1..83f9b4b 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -104,7 +104,7 @@ #if CONFIG_CPU == DM320 || CONFIG_CPU == S3C2440 || CONFIG_CPU == TCC7801 \ || CONFIG_CPU == IMX31L || CONFIG_CPU == AS3525 || CONFIG_CPU == JZ4732 \ - || defined(CPU_S5L870X) + || defined(CPU_S5L870X) || CONFIG_CPU == AS3525v2 #include "debug-target.h" #endif diff --git a/apps/plugins/plugin.lds b/apps/plugins/plugin.lds index fe38b64..82d6354 100644 --- a/apps/plugins/plugin.lds +++ b/apps/plugins/plugin.lds @@ -65,7 +65,7 @@ OUTPUT_FORMAT(elf32-littlemips) #include "cpu.h" #define DRAMSIZE (MEMORYSIZE * 0x100000) - STUBOFFSET - PLUGIN_BUFFER_SIZE - CODEC_SIZE - TTB_SIZE -#elif CONFIG_CPU==AS3525 +#elif CONFIG_CPU==AS3525 || CONFIG_CPU==AS3525v2 #include "cpu.h" #define DRAMORIG DRAM_ORIG #ifdef AMS_LOWMEM @@ -130,7 +130,7 @@ OUTPUT_FORMAT(elf32-littlemips) #define IRAM DRAM #define IRAMSIZE 0 -#elif CONFIG_CPU==AS3525 +#elif CONFIG_CPU==AS3525 || CONFIG_CPU==AS3525v2 #ifdef AMS_LOWMEM #define IRAMSIZE 0 /* simulates no IRAM since codec is already entirely in IRAM */ #define CODEC_ORIGIN (IRAM_ORIG + IRAM_SIZE - CODEC_SIZE) |