summaryrefslogtreecommitdiff
path: root/firmware/export/config.h
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2010-05-08 07:45:34 +0000
committerMichael Sevakis <jethead71@rockbox.org>2010-05-08 07:45:34 +0000
commita420561bf8315f60c290ea41aaa7e80f410c592d (patch)
tree4f8f2e5e8ad8f613d3647a0239e8c40ed8b3cf8c /firmware/export/config.h
parent7f3b3494a6a4198c59e07d54ad979b7a764250b6 (diff)
downloadrockbox-a420561bf8315f60c290ea41aaa7e80f410c592d.tar.gz
rockbox-a420561bf8315f60c290ea41aaa7e80f410c592d.zip
Gigabeat S: Reclaim about 800K of memory that was laying unused. Get rid of DEVBSS_ATTR for this target and implement as NOCACHEBSS_ATTR. Plugin and codec buffers move so all that is now incompatible (do full update). No version increase for plugins/codecs because the loader will reject them.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25895 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/config.h')
-rw-r--r--firmware/export/config.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index c3dd4fde93..070bd959b7 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -826,6 +826,11 @@ Lyre prototype 1 */
826 826
827#endif /* CPU_PP */ 827#endif /* CPU_PP */
828 828
829#if CONFIG_CPU == IMX31L
830#define NOCACHEBSS_ATTR __attribute__((section(".ncbss"),nocommon))
831#define NOCACHEDATA_ATTR __attribute__((section(".ncdata"),nocommon))
832#endif
833
829#ifndef CONFIG_CORELOCK 834#ifndef CONFIG_CORELOCK
830#define CONFIG_CORELOCK CORELOCK_NONE 835#define CONFIG_CORELOCK CORELOCK_NONE
831#endif 836#endif