diff options
| author | Thomas Jarosch <tomj@simonv.com> | 2011-02-27 23:42:37 +0000 |
|---|---|---|
| committer | Thomas Jarosch <tomj@simonv.com> | 2011-02-27 23:42:37 +0000 |
| commit | 6e9e6a7571275f1942630e0383d3fdf912178c8d (patch) | |
| tree | 74545da1553abed88ef536f0281ab1acbee96576 /firmware/common | |
| parent | 87f7dcf38ed521fcea5561e2a0b7954617f96e66 (diff) | |
| download | rockbox-6e9e6a7571275f1942630e0383d3fdf912178c8d.zip rockbox-6e9e6a7571275f1942630e0383d3fdf912178c8d.tar.gz rockbox-6e9e6a7571275f1942630e0383d3fdf912178c8d.tar.bz2 rockbox-6e9e6a7571275f1942630e0383d3fdf912178c8d.tar.xz | |
RaaA: Add initial Pandora support
More information: www.openpandora.org
Possible things to implement:
- Special button mappings
- Battery monitoring
- ALSA audio backend
- Automate creation of "pnd" (=binary) file
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29451 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/common')
| -rw-r--r-- | firmware/common/filefuncs.c | 2 | ||||
| -rw-r--r-- | firmware/common/rbpaths.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/firmware/common/filefuncs.c b/firmware/common/filefuncs.c index 3811f06..6eb2baf 100644 --- a/firmware/common/filefuncs.c +++ b/firmware/common/filefuncs.c @@ -91,7 +91,7 @@ bool dir_exists(const char *path) #endif /* __PCTOOL__ */ -#if (CONFIG_PLATFORM & (PLATFORM_NATIVE|PLATFORM_SDL|PLATFORM_MAEMO)) +#if (CONFIG_PLATFORM & (PLATFORM_NATIVE|PLATFORM_SDL|PLATFORM_MAEMO|PLATFORM_PANDORA)) struct dirinfo dir_get_info(DIR* parent, struct dirent *entry) { (void)parent; diff --git a/firmware/common/rbpaths.c b/firmware/common/rbpaths.c index 10fceb6..cb56ab4 100644 --- a/firmware/common/rbpaths.c +++ b/firmware/common/rbpaths.c @@ -43,7 +43,7 @@ #define opendir opendir_android #define mkdir mkdir_android #define rmdir rmdir_android -#elif (CONFIG_PLATFORM & (PLATFORM_SDL|PLATFORM_MAEMO)) +#elif (CONFIG_PLATFORM & (PLATFORM_SDL|PLATFORM_MAEMO|PLATFORM_PANDORA)) #define open sim_open #define remove sim_remove #define rename sim_rename |