[stage2] Add fatfs devoptab wrapper, change ffconf accordingly

This commit is contained in:
TuxSH
2018-05-05 16:30:25 +02:00
parent 8eb8de0e94
commit 0fca6c2296
3 changed files with 564 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
#ifndef FUSEE_FS_DEV_H
#define FUSEE_FS_DEV_H
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
int fsdev_mount_device(const char *name);
int fsdev_set_default_device(const char *name);
int fsdev_unmount_device(const char *name);
int fsdev_mount_all(void);
int fsdev_unmount_all(void);
#endif