blob: 9c7745fd246a09c6ede4108c416cdbe244762803 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
#if !defined(IRIVER_IFP7XX_SERIES)
/* 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
#ifdef HAVE_TAGCACHE
pictureflow
#endif
chessbox
jpeg
sudoku
reversi
goban
#ifndef OLYMPUS_MROBE_500
zxbox
#endif
#endif
/* For all big enough colour screens, iriver H1x0 and iAudio M5 */
#if defined(HAVE_LCD_COLOR) && LCD_HEIGHT > 80\
|| defined(IRIVER_H100_SERIES) || defined(IAUDIO_M5)
pacbox
#endif
/* For all the color targets */
#if defined(HAVE_LCD_COLOR) || defined(MROBE_100) || \
(LCD_DEPTH == 2) && !defined(ARCHOS_AV300)
#ifndef RB_PROFILE
doom
#endif
#endif
/* For all the swcodec targets */
#if CONFIG_CODEC == SWCODEC
midi
/* beatbox */
#ifndef RB_PROFILE
mpegplayer
#endif
#endif
/* Lua needs at least 160 KB to work in */
#if (PLUGIN_BUFFER_SIZE >= 0x80000)
lua
#endif
#endif /* IRIVER_IFP7XX_SERIES */
|