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
This commit is contained in:
Thomas Martitz 2014-02-07 18:12:31 +01:00
parent 706e6b7a75
commit 77f19f75eb
17 changed files with 122 additions and 10 deletions

View file

@ -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)
{

View file

@ -21,9 +21,11 @@
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include <unistd.h>
#include "system.h"
#include "panic.h"
#include "debug.h"
#include "hostfs.h"
#include "ascodec.h"
#include "gpio-ypr.h"
@ -59,6 +61,18 @@ void system_exception_wait(void)
system_reboot();
}
void hostfs_init(void)
{
/* stub */
}
int hostfs_flush(void)
{
sync();
return 0;
}
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
#include <stdio.h>
#include "file.h"

View file

@ -21,9 +21,11 @@
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include <unistd.h>
#include "system.h"
#include "panic.h"
#include "debug.h"
#include "hostfs.h"
#include "gpio-ypr.h"
#include "pmu-ypr1.h"
@ -65,3 +67,15 @@ void system_exception_wait(void)
{
system_reboot();
}
void hostfs_init()
{
/* stub */
}
int hostfs_flush(void)
{
sync();
return 0;
}

View file

@ -36,6 +36,7 @@
#include "buttonmap.h"
#include "debug.h"
#include "powermgmt.h"
#include "storage.h"
#ifdef HAVE_TOUCHSCREEN
#include "touchscreen.h"

View file

@ -24,6 +24,9 @@
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#ifdef __unix__
#include <unistd.h>
#endif
#include "system.h"
#include "kernel.h"
#include "thread-sdl.h"
@ -286,6 +289,21 @@ void system_exception_wait(void)
system_reboot();
}
void hostfs_init(void)
{
/* stub */
}
#ifdef HAVE_STORAGE_FLUSH
int hostfs_flush(void)
{
#ifdef __unix__
sync();
#endif
return 0;
}
#endif /* HAVE_STORAGE_FLUSH */
void sys_handle_argv(int argc, char *argv[])
{
if (argc >= 1)