summaryrefslogtreecommitdiffstats
path: root/firmware/target/hosted/sdl/system-sdl.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2014-02-07 18:12:31 +0100
committerThomas Martitz <kugel@rockbox.org>2014-02-23 20:23:51 +0100
commit77f19f75eb3661b3e3966da20effa2631ed380f1 (patch)
tree1e29f482e6de115cf6cdbf9958cba3d7ce8dc6af /firmware/target/hosted/sdl/system-sdl.c
parent706e6b7a75339cadc7b8a856a2eace68f89bb168 (diff)
downloadrockbox-77f19f75eb3661b3e3966da20effa2631ed380f1.tar.gz
rockbox-77f19f75eb3661b3e3966da20effa2631ed380f1.zip
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/sdl/system-sdl.c')
-rw-r--r--firmware/target/hosted/sdl/system-sdl.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/firmware/target/hosted/sdl/system-sdl.c b/firmware/target/hosted/sdl/system-sdl.c
index 572d6d570a..25e77c22a2 100644
--- a/firmware/target/hosted/sdl/system-sdl.c
+++ b/firmware/target/hosted/sdl/system-sdl.c
@@ -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)