We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daee83c commit ed1ace0Copy full SHA for ed1ace0
ports/unix/Makefile
@@ -149,6 +149,7 @@ SRC_C = \
149
alloc.c \
150
coverage.c \
151
fatfs_port.c \
152
+ supervisor/stub/filesystem.c \
153
supervisor/stub/serial.c \
154
supervisor/stub/stack.c \
155
supervisor/shared/translate.c \
supervisor/stub/filesystem.c
@@ -26,13 +26,17 @@
26
27
#include "supervisor/filesystem.h"
28
29
-void filesystem_init(void) {
+void filesystem_init(bool create_allowed, bool force_create) {
30
+ (void) create_allowed;
31
+ (void) force_create;
32
}
33
34
void filesystem_flush(void) {
35
36
-void filesystem_writable_by_python(bool writable) {
37
+bool filesystem_is_writable_by_python(fs_user_mount_t *vfs) {
38
+ (void) vfs;
39
+ return true;
40
41
42
bool filesystem_present(void) {
0 commit comments