7d961d390a
- adjust lcd_grey_phase_blit() parameter to recent change - detection of external power - compilation of plugins - need to be enabled individually in SOURCES/SUBDIRS (use autostart.rock as test plugin with limited interaction via BUTTON_POWER) also - move autostart.rock to apps dir where it is expected - set missing svn:keywords for various files git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16056 a1c6a512-1295-4272-9138-f99709370657
48 lines
939 B
Text
48 lines
939 B
Text
#if !defined(IRIVER_IFP7XX_SERIES) && !defined(OLYMPUS_MROBE_100)
|
|
|
|
/* For all targets */
|
|
shortcuts
|
|
|
|
/* For various targets... */
|
|
|
|
#if CONFIG_RTC
|
|
clock
|
|
#endif
|
|
|
|
#if (CONFIG_KEYPAD == RECORDER_PAD) || defined(HAVE_LCD_COLOR) \
|
|
|| defined(IRIVER_H100_SERIES) || defined(IAUDIO_M5)
|
|
rockboy
|
|
#endif
|
|
|
|
/* For all targets with a bitmap display */
|
|
#ifdef HAVE_LCD_BITMAP
|
|
chessbox
|
|
sudoku
|
|
reversi
|
|
#endif
|
|
|
|
/* For all 2bpp and colour targets */
|
|
#if (LCD_DEPTH >= 2) && !defined(OLYMPUS_MROBE_500)
|
|
zxbox
|
|
#endif
|
|
|
|
/* For all the colour targets, iriver H1x0 and iAudio M5 */
|
|
#if defined(HAVE_LCD_COLOR) && !defined (SANSA_C200)\
|
|
|| defined(IRIVER_H100_SERIES) || defined(IAUDIO_M5)
|
|
pacbox
|
|
#endif
|
|
|
|
/* For all the color targets */
|
|
#if defined(HAVE_LCD_COLOR) || \
|
|
(LCD_DEPTH == 2) && !defined(ARCHOS_AV300)
|
|
doom
|
|
#endif
|
|
|
|
/* For all the swcodec targets */
|
|
#if CONFIG_CODEC == SWCODEC
|
|
midi
|
|
/* beatbox */
|
|
mpegplayer
|
|
#endif
|
|
|
|
#endif /* IRIVER_IFP7XX_SERIES */
|