diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2014-02-07 18:12:31 +0100 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2014-02-23 20:23:51 +0100 |
| commit | 77f19f75eb3661b3e3966da20effa2631ed380f1 (patch) | |
| tree | 1e29f482e6de115cf6cdbf9958cba3d7ce8dc6af /firmware/target/hosted/android/system-android.c | |
| parent | 706e6b7a75339cadc7b8a856a2eace68f89bb168 (diff) | |
| download | rockbox-77f19f75eb3661b3e3966da20effa2631ed380f1.zip rockbox-77f19f75eb3661b3e3966da20effa2631ed380f1.tar.gz rockbox-77f19f75eb3661b3e3966da20effa2631ed380f1.tar.bz2 rockbox-77f19f75eb3661b3e3966da20effa2631ed380f1.tar.xz | |
storage: Add STORAGE_HOSTFS
CONFIG_STORAGE & STORAGE_HOSTFS allows to use parts of the storage_* API to be
compiled for application targets without compiling storage.c or performing
actually raw storage access. This is primarily to enable application targets to
implement HAVE_MULTIVOMULE/HAVE_HOTSWAP (in a later commit).
SIMULATOR uses the same mechanism without explicitely defining STORAGE_HOSTFS
(how to add a bit to an existing preprocessor token?).
Change-Id: Ib3f8ee0d5231e2ed21ff00842d51e32bc4fc7292
Diffstat (limited to 'firmware/target/hosted/android/system-android.c')
| -rw-r--r-- | firmware/target/hosted/android/system-android.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/firmware/target/hosted/android/system-android.c b/firmware/target/hosted/android/system-android.c index d96edcd..313bfbc 100644 --- a/firmware/target/hosted/android/system-android.c +++ b/firmware/target/hosted/android/system-android.c @@ -23,6 +23,7 @@ #include <setjmp.h> #include <jni.h> #include <pthread.h> +#include <unistd.h> #include "config.h" #include "system.h" #include "power.h" @@ -66,6 +67,17 @@ void system_init(void) telephony_init_device(); } +void hostfs_init(void) +{ + /* stub */ +} + +int hostfs_flush(void) +{ + sync(); + return 0; +} + JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void* reserved) { |