summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2008-04-15 13:35:41 +0000
committerMichael Sevakis <jethead71@rockbox.org>2008-04-15 13:35:41 +0000
commitc4a49c4e5f2013222c6c62d56c219fa26ecf9b76 (patch)
tree5137bd92e2140c7a83e6c48e2bc1121abce99a73
parent595d0659d40de2892f2c880713cbf1d15ca7e03f (diff)
downloadrockbox-c4a49c4e5f2013222c6c62d56c219fa26ecf9b76.tar.gz
rockbox-c4a49c4e5f2013222c6c62d56c219fa26ecf9b76.zip
Make the gigabeat S bootloader compile again. Don't know if it still works.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17119 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/export/config.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index a93152b5e7..778e50f2c5 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -328,15 +328,24 @@
328#define HAVE_EXTENDED_MESSAGING_AND_NAME 328#define HAVE_EXTENDED_MESSAGING_AND_NAME
329#endif 329#endif
330 330
331#if (CONFIG_CODEC == SWCODEC) && !defined(BOOTLOADER) 331#if (CONFIG_CODEC == SWCODEC)
332#ifndef BOOTLOADER
333
332#ifndef SIMULATOR 334#ifndef SIMULATOR
333#define HAVE_PRIORITY_SCHEDULING 335#define HAVE_PRIORITY_SCHEDULING
334#define HAVE_SCHEDULER_BOOSTCTRL 336#define HAVE_SCHEDULER_BOOSTCTRL
335#endif /* SIMULATOR */ 337#endif /* SIMULATOR */
338
336#define HAVE_SEMAPHORE_OBJECTS 339#define HAVE_SEMAPHORE_OBJECTS
337#define HAVE_EVENT_OBJECTS 340#define HAVE_EVENT_OBJECTS
338 341
339#if defined (TOSHIBA_GIGABEAT_F) || defined (TOSHIBA_GIGABEAT_S) 342#ifdef TOSHIBA_GIGABEAT_F
343#define HAVE_WAKEUP_OBJECTS
344#endif
345
346#endif /* BOOTLOADER */
347
348#ifdef TOSHIBA_GIGABEAT_S
340#define HAVE_WAKEUP_OBJECTS 349#define HAVE_WAKEUP_OBJECTS
341#endif 350#endif
342#endif 351#endif