summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/samsungypr/ypr0/system-ypr0.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted/samsungypr/ypr0/system-ypr0.c')
-rw-r--r--firmware/target/hosted/samsungypr/ypr0/system-ypr0.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/firmware/target/hosted/samsungypr/ypr0/system-ypr0.c b/firmware/target/hosted/samsungypr/ypr0/system-ypr0.c
index 6232df4a22..477b71c6a2 100644
--- a/firmware/target/hosted/samsungypr/ypr0/system-ypr0.c
+++ b/firmware/target/hosted/samsungypr/ypr0/system-ypr0.c
@@ -21,9 +21,11 @@
21#include <stdlib.h> 21#include <stdlib.h>
22#include <string.h> 22#include <string.h>
23#include <inttypes.h> 23#include <inttypes.h>
24#include <unistd.h>
24#include "system.h" 25#include "system.h"
25#include "panic.h" 26#include "panic.h"
26#include "debug.h" 27#include "debug.h"
28#include "hostfs.h"
27 29
28#include "ascodec.h" 30#include "ascodec.h"
29#include "gpio-ypr.h" 31#include "gpio-ypr.h"
@@ -59,6 +61,18 @@ void system_exception_wait(void)
59 system_reboot(); 61 system_reboot();
60} 62}
61 63
64void hostfs_init(void)
65{
66 /* stub */
67}
68
69int hostfs_flush(void)
70{
71 sync();
72
73 return 0;
74}
75
62#ifdef HAVE_ADJUSTABLE_CPU_FREQ 76#ifdef HAVE_ADJUSTABLE_CPU_FREQ
63#include <stdio.h> 77#include <stdio.h>
64#include "file.h" 78#include "file.h"