summaryrefslogtreecommitdiff
path: root/firmware/SOURCES
diff options
context:
space:
mode:
authorThomas Jarosch <tomj@simonv.com>2011-02-08 20:05:25 +0000
committerThomas Jarosch <tomj@simonv.com>2011-02-08 20:05:25 +0000
commit5f037ac015e6d76d030a163753db5ff58cdff49b (patch)
treef5eb7dcdc0e0c3e373227e45061c1d99a14a0819 /firmware/SOURCES
parent4d129044390a087b6193b6ce63e035b2550b3ce4 (diff)
downloadrockbox-5f037ac015e6d76d030a163753db5ff58cdff49b.tar.gz
rockbox-5f037ac015e6d76d030a163753db5ff58cdff49b.zip
Initial maemo platform support
Adds Nokia N900, N810 and N800 support. Features: - Introduce maemo specific platform defines - Play audio in silent mode - Stop playback on incoming calls - Battery level readout - Bluetooth headset support - Save CPU by disabling screen updates if the display is off or the app doesn't have input focus - N900: GStreamer audio backend Kudos to kugel for the code review. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29248 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/SOURCES')
-rw-r--r--firmware/SOURCES11
1 files changed, 10 insertions, 1 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index ae0c8a4f20..9c9ebf53fc 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -47,6 +47,11 @@ target/hosted/sdl/app/button-application.c
47#endif 47#endif
48#endif 48#endif
49 49
50/* Maemo specific files */
51#if (CONFIG_PLATFORM & PLATFORM_MAEMO)
52target/hosted/maemo/maemo-thread.c
53#endif
54
50/* Standard library */ 55/* Standard library */
51#if (CONFIG_PLATFORM & PLATFORM_NATIVE) || defined(__MINGW32__) || defined(__CYGWIN__) 56#if (CONFIG_PLATFORM & PLATFORM_NATIVE) || defined(__MINGW32__) || defined(__CYGWIN__)
52libc/errno.c 57libc/errno.c
@@ -339,8 +344,12 @@ drivers/audio/cs42l55.c
339#elif defined(HAVE_SDL_AUDIO) 344#elif defined(HAVE_SDL_AUDIO)
340drivers/audio/sdl.c 345drivers/audio/sdl.c
341#if CONFIG_CODEC == SWCODEC 346#if CONFIG_CODEC == SWCODEC
347#if (CONFIG_PLATFORM & PLATFORM_MAEMO5)
348target/hosted/maemo/pcm-gstreamer.c
349#else
342target/hosted/sdl/pcm-sdl.c 350target/hosted/sdl/pcm-sdl.c
343#endif 351#endif /* (CONFIG_PLATFORM & PLATFORM_MAEMO) */
352#endif /* CONFIG_CODEC == SWCODEC */
344#endif /* (CONFIG_PLATFORM & PLATFORM_NATIVE) && !defined(BOOTLOADER) */ 353#endif /* (CONFIG_PLATFORM & PLATFORM_NATIVE) && !defined(BOOTLOADER) */
345 354
346/* USB Stack */ 355/* USB Stack */