summaryrefslogtreecommitdiff
path: root/apps/SOURCES
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2006-08-15 12:27:07 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2006-08-15 12:27:07 +0000
commit224c0a13ebb5828b9bc06a9c1c23ae17f0ac19f9 (patch)
treebae2154b272f786983cf8e6de28d33f98f327560 /apps/SOURCES
parentc0f8b187706364f5e4bda2ac26750d14454c901d (diff)
downloadrockbox-224c0a13ebb5828b9bc06a9c1c23ae17f0ac19f9.tar.gz
rockbox-224c0a13ebb5828b9bc06a9c1c23ae17f0ac19f9.zip
Finally, the new button action system is here, thanks to Jonathan Gordon. Some button mappings have changed and other things may break. Comments should go to the forum, http://forums.rockbox.org/index.php?topic=5829.0 or the mailing list.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10582 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/SOURCES')
-rw-r--r--apps/SOURCES16
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/SOURCES b/apps/SOURCES
index 3548980f28..a5dfc8bc5f 100644
--- a/apps/SOURCES
+++ b/apps/SOURCES
@@ -1,6 +1,7 @@
1#ifdef ROCKBOX_HAS_LOGF 1#ifdef ROCKBOX_HAS_LOGF
2logfdisp.c 2logfdisp.c
3#endif 3#endif
4action.c
4alarm_menu.c 5alarm_menu.c
5abrepeat.c 6abrepeat.c
6bookmark.c 7bookmark.c
@@ -81,3 +82,18 @@ eq_menu.c
81#endif 82#endif
82metadata.c 83metadata.c
83tagcache.c 84tagcache.c
85#if (CONFIG_KEYPAD == IRIVER_H100_PAD) \
86 || (CONFIG_KEYPAD == IRIVER_H300_PAD)
87keymaps/keymap-h1x0_h3x0.c
88#elif ((CONFIG_KEYPAD == IPOD_4G_PAD) \
89 || (CONFIG_KEYPAD == IPOD_3G_PAD))
90keymaps/keymap-ipod.c
91#elif CONFIG_KEYPAD == RECORDER_PAD
92keymaps/keymap-recorder.c
93#elif CONFIG_KEYPAD == ONDIO_PAD
94keymaps/keymap-ondio.c
95#elif CONFIG_KEYPAD == PLAYER_PAD
96keymaps/keymap-player.c
97#elif CONFIG_KEYPAD == IAUDIO_X5_PAD
98keymaps/keymap-x5.c
99#endif