summaryrefslogtreecommitdiff
path: root/firmware/export/rbpaths.h
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2014-02-07 18:30:50 +0100
committerThomas Martitz <kugel@rockbox.org>2014-02-23 20:23:52 +0100
commitf6c26d33a4e15d966597bc9d66c1f33328a750af (patch)
tree5e0e4d0189c856010a78ce0b79cdc3c3cb5c1354 /firmware/export/rbpaths.h
parent46137ebd4d59d7a91d0b8d98d846a3fd2ec70f5c (diff)
downloadrockbox-f6c26d33a4e15d966597bc9d66c1f33328a750af.tar.gz
rockbox-f6c26d33a4e15d966597bc9d66c1f33328a750af.zip
samsungypr0: Support or mounting the microsd
A thread polls the appropriate GPIO pin for sd card presence and mounts using the mount system call. Change-Id: I31ab41c4120f4af64eb6998b7e7b6f9051585efb
Diffstat (limited to 'firmware/export/rbpaths.h')
-rw-r--r--firmware/export/rbpaths.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/firmware/export/rbpaths.h b/firmware/export/rbpaths.h
index 0a5b36c5ab..1f7e1a2643 100644
--- a/firmware/export/rbpaths.h
+++ b/firmware/export/rbpaths.h
@@ -60,7 +60,6 @@
60#else /* APPLICATION */ 60#else /* APPLICATION */
61 61
62#define HOME_DIR "<HOME>" /* replaced at runtime */ 62#define HOME_DIR "<HOME>" /* replaced at runtime */
63#define HOME_DIR_LEN (sizeof(HOME_DIR)-1)
64 63
65#define PLUGIN_DIR ROCKBOX_LIBRARY_PATH "/rockbox/rocks" 64#define PLUGIN_DIR ROCKBOX_LIBRARY_PATH "/rockbox/rocks"
66#if (CONFIG_PLATFORM & PLATFORM_ANDROID) 65#if (CONFIG_PLATFORM & PLATFORM_ANDROID)
@@ -73,10 +72,13 @@ extern void paths_init(void);
73 72
74#endif /* !APPLICATION || SAMSUNG_YPR0 */ 73#endif /* !APPLICATION || SAMSUNG_YPR0 */
75 74
75#define HOME_DIR_LEN (sizeof(HOME_DIR)-1)
76
76#ifdef APPLICATION 77#ifdef APPLICATION
77 78
78#include <dirent.h> 79#include <dirent.h>
79#include <fcntl.h> 80#include <fcntl.h>
81#include <unistd.h>
80 82
81int app_open(const char *name, int o, ...); 83int app_open(const char *name, int o, ...);
82int app_creat(const char* name, mode_t mode); 84int app_creat(const char* name, mode_t mode);
@@ -87,6 +89,7 @@ int app_closedir(DIR *dir);
87struct dirent* app_readdir(DIR* dir); 89struct dirent* app_readdir(DIR* dir);
88int app_mkdir(const char* name); 90int app_mkdir(const char* name);
89int app_rmdir(const char* name); 91int app_rmdir(const char* name);
92ssize_t app_readlink(const char *path, char *buf, size_t bufsiz);
90 93
91#endif 94#endif
92 95