summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/sdl
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted/sdl')
-rw-r--r--firmware/target/hosted/sdl/button-sdl.c1
-rw-r--r--firmware/target/hosted/sdl/system-sdl.c18
2 files changed, 19 insertions, 0 deletions
diff --git a/firmware/target/hosted/sdl/button-sdl.c b/firmware/target/hosted/sdl/button-sdl.c
index 91338bb0d5..1ed07c153c 100644
--- a/firmware/target/hosted/sdl/button-sdl.c
+++ b/firmware/target/hosted/sdl/button-sdl.c
@@ -36,6 +36,7 @@
36#include "buttonmap.h" 36#include "buttonmap.h"
37#include "debug.h" 37#include "debug.h"
38#include "powermgmt.h" 38#include "powermgmt.h"
39#include "storage.h"
39 40
40#ifdef HAVE_TOUCHSCREEN 41#ifdef HAVE_TOUCHSCREEN
41#include "touchscreen.h" 42#include "touchscreen.h"
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 @@
24#include <stdlib.h> 24#include <stdlib.h>
25#include <string.h> 25#include <string.h>
26#include <inttypes.h> 26#include <inttypes.h>
27#ifdef __unix__
28#include <unistd.h>
29#endif
27#include "system.h" 30#include "system.h"
28#include "kernel.h" 31#include "kernel.h"
29#include "thread-sdl.h" 32#include "thread-sdl.h"
@@ -286,6 +289,21 @@ void system_exception_wait(void)
286 system_reboot(); 289 system_reboot();
287} 290}
288 291
292void hostfs_init(void)
293{
294 /* stub */
295}
296
297#ifdef HAVE_STORAGE_FLUSH
298int hostfs_flush(void)
299{
300#ifdef __unix__
301 sync();
302#endif
303 return 0;
304}
305#endif /* HAVE_STORAGE_FLUSH */
306
289void sys_handle_argv(int argc, char *argv[]) 307void sys_handle_argv(int argc, char *argv[])
290{ 308{
291 if (argc >= 1) 309 if (argc >= 1)