diff options
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/as3525.h | 1 | ||||
| -rw-r--r-- | firmware/export/config.h | 6 |
2 files changed, 3 insertions, 4 deletions
diff --git a/firmware/export/as3525.h b/firmware/export/as3525.h index 6b0e85f..52f10ef 100644 --- a/firmware/export/as3525.h +++ b/firmware/export/as3525.h @@ -31,7 +31,6 @@ #endif /* Virtual addresses */ -/* Do not apply to the bootloader, which uses physical addresses (no MMU) */ #define DRAM_ORIG 0x30000000 #define IRAM_ORIG (DRAM_ORIG + DRAM_SIZE) /* IRAM is mapped just next to DRAM */ diff --git a/firmware/export/config.h b/firmware/export/config.h index 22178e4..de84dc3 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -748,9 +748,9 @@ Lyre prototype 1 */ (((CONFIG_CPU == SH7034) && !defined(PLUGIN)) || /* SH1 archos: core only */ \ defined(CPU_COLDFIRE) || /* Coldfire: core, plugins, codecs */ \ defined(CPU_PP) || /* PortalPlayer: core, plugins, codecs */ \ - (CONFIG_CPU == AS3525 && MEMORYSIZE > 2) || /* AS3525 +2MB: core, plugins, codecs */ \ - (CONFIG_CPU == AS3525 && MEMORYSIZE <= 2 && !defined(PLUGIN) && !defined(CODEC)) || /* AS3525 2MB: core only */ \ - (CONFIG_CPU == AS3525v2 && !defined(PLUGIN) && !defined(CODEC)) || /* AS3525v2: core only */ \ + (CONFIG_CPU == AS3525 && MEMORYSIZE > 2 && !defined(BOOTLOADER)) || /* AS3525 +2MB: core, plugins, codecs */ \ + (CONFIG_CPU == AS3525 && MEMORYSIZE <= 2 && !defined(PLUGIN) && !defined(CODEC) && !defined(BOOTLOADER)) || /* AS3525 2MB: core only */ \ + (CONFIG_CPU == AS3525v2 && !defined(PLUGIN) && !defined(CODEC) && !defined(BOOTLOADER)) || /* AS3525v2: core only */ \ (CONFIG_CPU == PNX0101) || \ (CONFIG_CPU == TCC7801) || \ defined(CPU_S5L870X)) || /* Samsung S5L8700: core, plugins, codecs */ \ |