summaryrefslogtreecommitdiff
path: root/firmware/SOURCES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-06-18 21:45:58 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-06-18 21:45:58 +0000
commit22307918508395c0ed2dd6a86aff7597e7d2f543 (patch)
tree5ca6d45611788d6f5de5e5e806a0d2553421bd1c /firmware/SOURCES
parent1753e98a700e30aa30d83b458f3bb1b4dacad243 (diff)
downloadrockbox-22307918508395c0ed2dd6a86aff7597e7d2f543.tar.gz
rockbox-22307918508395c0ed2dd6a86aff7597e7d2f543.zip
1) mpeg.c is only for MAS-devices
2) lcd-h100-remote should work fine for H300 as well since you can use the H100 remote fine on a h300 player 3) drivers/uda1380.c depends on HAVE_UDA1380 4) pcm_playback.c is for all sw-codec (non-MAS) devices git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6756 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/SOURCES')
-rw-r--r--firmware/SOURCES10
1 files changed, 6 insertions, 4 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index cb47083b30..38f7336020 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -102,7 +102,7 @@ crt0.S
102#endif 102#endif
103mp3_playback.c 103mp3_playback.c
104mp3data.c 104mp3data.c
105#ifndef IRIVER_H100 105#if CONFIG_HWCODEC != MASNONE
106mpeg.c 106mpeg.c
107#endif 107#endif
108#ifndef WIN32 /* the win32 sim has its own versin of these: */ 108#ifndef WIN32 /* the win32 sim has its own versin of these: */
@@ -117,11 +117,13 @@ bitswap.S
117descramble.S 117descramble.S
118#endif 118#endif
119drivers/lcd.S 119drivers/lcd.S
120#ifdef IRIVER_H100 120#ifdef HAVE_REMOTE_LCD
121drivers/lcd-h100-remote.c 121drivers/lcd-h100-remote.c
122#ifndef SIMULATOR 122#endif
123#if defined(HAVE_UDA1380) && !defined(SIMULATOR)
123drivers/uda1380.c 124drivers/uda1380.c
124pcm_playback.c
125#endif 125#endif
126#if CONFIG_HWCODEC == MASNONE
127pcm_playback.c
126#endif 128#endif
127sound.c 129sound.c