summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/android/system-android.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted/android/system-android.c')
-rw-r--r--firmware/target/hosted/android/system-android.c12
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 d96edcd637..313bfbcd62 100644
--- a/firmware/target/hosted/android/system-android.c
+++ b/firmware/target/hosted/android/system-android.c
@@ -23,6 +23,7 @@
23#include <setjmp.h> 23#include <setjmp.h>
24#include <jni.h> 24#include <jni.h>
25#include <pthread.h> 25#include <pthread.h>
26#include <unistd.h>
26#include "config.h" 27#include "config.h"
27#include "system.h" 28#include "system.h"
28#include "power.h" 29#include "power.h"
@@ -66,6 +67,17 @@ void system_init(void)
66 telephony_init_device(); 67 telephony_init_device();
67} 68}
68 69
70void hostfs_init(void)
71{
72 /* stub */
73}
74
75int hostfs_flush(void)
76{
77 sync();
78 return 0;
79}
80
69JNIEXPORT jint JNICALL 81JNIEXPORT jint JNICALL
70JNI_OnLoad(JavaVM *vm, void* reserved) 82JNI_OnLoad(JavaVM *vm, void* reserved)
71{ 83{