summaryrefslogtreecommitdiff
path: root/firmware/export/config.h
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2008-05-21 08:42:11 +0000
committerMichael Sevakis <jethead71@rockbox.org>2008-05-21 08:42:11 +0000
commita9c20f5789c13b486d217024a020f9d6163e2d51 (patch)
tree5da52ca9cc7a28ba21ced042cb739e6160d5f87b /firmware/export/config.h
parent5f796087b009fee1ae60904b0355cc7febe3330f (diff)
downloadrockbox-a9c20f5789c13b486d217024a020f9d6163e2d51.tar.gz
rockbox-a9c20f5789c13b486d217024a020f9d6163e2d51.zip
Gigabeat S:
1) Rework event handling and static registration mechanism. No target- specific code in mc13783 driver. GPIO event driver interfaces more cleanly. 2) Somewhat related - enable thread priority for bootloader which is desireable here (ffs is used for GPIO event enabling anyway and that goes along with priority). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17593 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/config.h')
-rw-r--r--firmware/export/config.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index c200355872..c7e204c5df 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -341,7 +341,14 @@
341#endif 341#endif
342 342
343#if (CONFIG_CODEC == SWCODEC) 343#if (CONFIG_CODEC == SWCODEC)
344#ifndef BOOTLOADER 344#ifdef BOOTLOADER
345
346#if CONFIG_CPU == IMX31L
347/* Priority in bootloader is wanted */
348#define HAVE_PRIORITY_SCHEDULING
349#endif
350
351#else /* !BOOTLOADER */
345 352
346#define HAVE_EXTENDED_MESSAGING_AND_NAME 353#define HAVE_EXTENDED_MESSAGING_AND_NAME
347 354