blob: 74e7fe36d8178d97816595ff4d10be76f11fb2c7 (
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
|
#ifndef IRIVER_IFP7XX_SERIES
/* For all targets */
databox
/* For various targets... */
#if (CONFIG_KEYPAD == RECORDER_PAD) || \
(CONFIG_KEYPAD == IRIVER_H100_PAD) || \
(CONFIG_KEYPAD == IRIVER_H300_PAD) || \
defined(IPOD_COLOR) || \
defined(IPOD_VIDEO) || \
defined(TOSHIBA_GIGABEAT_F)
rockboy
#endif
/* For all targets with a bitmap display */
#ifdef HAVE_LCD_BITMAP
chessbox
sudoku
#endif
/* For all 2bpp and colour targets */
#if (LCD_DEPTH >= 2)
zxbox
#endif
/* For all the colour targets and iriver H1x0 */
#if defined(HAVE_LCD_COLOR) || defined(IRIVER_H100_SERIES)
pacbox
#endif
/* For all the color targets apart from the Gigabeat */
#if (defined(HAVE_LCD_COLOR) && !defined(TOSHIBA_GIGABEAT_F)) || (LCD_DEPTH == 2)
doom
#endif
/* For all the colour targets */
#if defined(HAVE_LCD_COLOR)
mpegplayer
#endif
#endif /* IRIVER_IFP7XX_SERIES */
|