summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-06-09 01:44:19 +0000
committerThomas Martitz <kugel@rockbox.org>2009-06-09 01:44:19 +0000
commit174b910664c454280417c203be5b2950181301a6 (patch)
tree4c8219e48967bc87d2036c514e10c488b48d6e09
parente2f165c088328fd17dde9026b4927851c8465640 (diff)
downloadrockbox-174b910664c454280417c203be5b2950181301a6.tar.gz
rockbox-174b910664c454280417c203be5b2950181301a6.zip
Alright, revert r21229 for now. Stupid me forgetting about the inclusion sequence :(
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21231 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/export/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index 89c70ce965..696c923bb6 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -636,8 +636,8 @@ Lyre prototype 1*/
636 (((CONFIG_CPU == SH7034) && !defined(PLUGIN)) || /* SH1 archos: core only */ \ 636 (((CONFIG_CPU == SH7034) && !defined(PLUGIN)) || /* SH1 archos: core only */ \
637 defined(CPU_COLDFIRE) || /* Coldfire: core, plugins, codecs */ \ 637 defined(CPU_COLDFIRE) || /* Coldfire: core, plugins, codecs */ \
638 defined(CPU_PP) || /* PortalPlayer: core, plugins, codecs */ \ 638 defined(CPU_PP) || /* PortalPlayer: core, plugins, codecs */ \
639 (CONFIG_CPU == AS3525 && !defined(AMS_LOWMEM)) || /* AS3525 +2MB: core, plugins, codecs */ \ 639 (CONFIG_CPU == AS3525 && MEMORYSIZE > 2) || /* AS3525 +2MB: core, plugins, codecs */ \
640 (CONFIG_CPU == AS3525 && defined(AMS_LOWMEM) && !defined(PLUGIN) && !defined(CODEC)) || /* AS3525 2MB:core only */ \ 640 (CONFIG_CPU == AS3525 && MEMORYSIZE <= 2 && !defined(PLUGIN) && !defined(CODEC)) || /* AS3525 2MB:core only */ \
641 (CONFIG_CPU == PNX0101) || \ 641 (CONFIG_CPU == PNX0101) || \
642 (CONFIG_CPU == S5L8700)) /* Samsung S5L8700: core, plugins, codecs */ 642 (CONFIG_CPU == S5L8700)) /* Samsung S5L8700: core, plugins, codecs */
643#define ICODE_ATTR __attribute__ ((section(".icode"))) 643#define ICODE_ATTR __attribute__ ((section(".icode")))