summaryrefslogtreecommitdiff
path: root/firmware/export/config.h
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2006-08-16 22:04:39 +0000
committerJens Arnold <amiconn@rockbox.org>2006-08-16 22:04:39 +0000
commitc5a24c69221dbd8f2c55f007d9d7eaa2222fa5df (patch)
tree241571240292a2ff78531363aaeec68354360315 /firmware/export/config.h
parent6267c7b5f4f91a7032609bd837c628070697a69c (diff)
downloadrockbox-c5a24c69221dbd8f2c55f007d9d7eaa2222fa5df.tar.gz
rockbox-c5a24c69221dbd8f2c55f007d9d7eaa2222fa5df.zip
Disable TC_RAMCACHE for archos. It doesn't make much sense with the small RAM, and disabling reduces binary size.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10624 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/config.h')
-rw-r--r--firmware/export/config.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index a934211542..1579767ade 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -198,16 +198,12 @@
198/* no known platform */ 198/* no known platform */
199#endif 199#endif
200 200
201/* Enable the directory cache if we have plenty of RAM. */ 201/* Enable the directory cache and tagcache in RAM if we have
202/* Cache is just temporarily disabled for simulator build. 202 * plenty of RAM. Both features can be enabled independently. */
203 * Do the small fix in dircache.c to enable this. */
204#if (MEMORYSIZE > 8 || MEM > 8) && !defined(BOOTLOADER) 203#if (MEMORYSIZE > 8 || MEM > 8) && !defined(BOOTLOADER)
205#define HAVE_DIRCACHE 1 204#define HAVE_DIRCACHE 1
206#endif
207
208/* Define tagcache in ram for all players (can operate
209 * also without dircache). */
210#define HAVE_TC_RAMCACHE 1 205#define HAVE_TC_RAMCACHE 1
206#endif
211 207
212/* define for all cpus from coldfire family */ 208/* define for all cpus from coldfire family */
213#if (CONFIG_CPU == MCF5249) || (CONFIG_CPU == MCF5250) 209#if (CONFIG_CPU == MCF5249) || (CONFIG_CPU == MCF5250)