Skip to content

Commit 1808b2e

Browse files
committed
extmod: Remove MICROPY_FSUSERMOUNT and related files.
Replaced by MICROPY_VFS and the VFS sub-system.
1 parent 3d6f957 commit 1808b2e

11 files changed

Lines changed: 5 additions & 394 deletions

File tree

extmod/fsusermount.c

Lines changed: 0 additions & 244 deletions
This file was deleted.

extmod/vfs_fat.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ struct _fs_user_mount_t;
3131
extern const byte fresult_to_errno_table[20];
3232
extern const mp_obj_type_t mp_fat_vfs_type;
3333

34-
struct _fs_user_mount_t *ff_get_vfs(const char **path);
35-
3634
mp_import_stat_t fat_vfs_import_stat(struct _fs_user_mount_t *vfs, const char *path);
3735
mp_obj_t fatfs_builtin_open(mp_uint_t n_args, const mp_obj_t *args, mp_map_t *kwargs);
3836
mp_obj_t fatfs_builtin_open_self(mp_obj_t self_in, mp_obj_t path, mp_obj_t mode);

extmod/vfs_fat_diskio.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*/
2929

3030
#include "py/mpconfig.h"
31-
#if MICROPY_VFS || MICROPY_FSUSERMOUNT
31+
#if MICROPY_VFS
3232

3333
#include <stdint.h>
3434
#include <stdio.h>
@@ -305,4 +305,4 @@ DRESULT disk_ioctl (
305305
}
306306
#endif
307307

308-
#endif // MICROPY_VFS || MICROPY_FSUSERMOUNT
308+
#endif // MICROPY_VFS

extmod/vfs_fat_ffconf.c

Lines changed: 0 additions & 118 deletions
This file was deleted.

0 commit comments

Comments
 (0)