summaryrefslogtreecommitdiff
path: root/apps/plugins/rockbox_flash.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-02-04 12:41:09 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-02-04 12:41:09 +0000
commit6700ad8f206d0beba92e22680504ae6ba2b7d74c (patch)
tree1eba76a3a966d2a38e1819157917918b7721ff0b /apps/plugins/rockbox_flash.c
parent3fcfdffe88025a943f9c72f7b86363dc08edaecd (diff)
downloadrockbox-6700ad8f206d0beba92e22680504ae6ba2b7d74c.tar.gz
rockbox-6700ad8f206d0beba92e22680504ae6ba2b7d74c.zip
adapted to build on iRiver
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5784 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/rockbox_flash.c')
-rw-r--r--apps/plugins/rockbox_flash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/rockbox_flash.c b/apps/plugins/rockbox_flash.c
index 7d0f630474..b1b5bc5233 100644
--- a/apps/plugins/rockbox_flash.c
+++ b/apps/plugins/rockbox_flash.c
@@ -21,7 +21,7 @@
21****************************************************************************/ 21****************************************************************************/
22#include "plugin.h" 22#include "plugin.h"
23 23
24#ifndef SIMULATOR /* Only build for target */ 24#if !defined(SIMULATOR) && (CONFIG_CPU == SH7034) /* Only for SH targets */
25 25
26/* define DUMMY if you only want to "play" with the UI, does no harm */ 26/* define DUMMY if you only want to "play" with the UI, does no harm */
27/* #define DUMMY */ 27/* #define DUMMY */
@@ -1002,4 +1002,4 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
1002} 1002}
1003 1003
1004 1004
1005#endif /* #ifndef SIMULATOR */ 1005#endif /* !SIMULATOR or a SH-target */