diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-02-13 23:03:23 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-02-14 19:15:22 +0200 |
commit | 8a43a41b3aa662c44bef46002529467036ea81cf (patch) | |
tree | d8b39442a0cdee431dee77b6274616abbc2f5fe4 /unix/qstrdefsport.h | |
parent | e9be6a378c23ece54521fb9098fda028f6c7d88f (diff) | |
download | micropython-8a43a41b3aa662c44bef46002529467036ea81cf.tar.gz micropython-8a43a41b3aa662c44bef46002529467036ea81cf.zip |
unix: Enable VfsFat support.
Diffstat (limited to 'unix/qstrdefsport.h')
-rw-r--r-- | unix/qstrdefsport.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/unix/qstrdefsport.h b/unix/qstrdefsport.h index 60a39c39f1..3aceb331fd 100644 --- a/unix/qstrdefsport.h +++ b/unix/qstrdefsport.h @@ -45,6 +45,14 @@ Q(getenv) Q(mkdir) Q(ilistdir) Q(errno) +#if MICROPY_FSUSERMOUNT +Q(vfs_mount) +Q(vfs_umount) +Q(vfs_mkfs) +#endif +#if MICROPY_VFS_FAT +Q(VfsFat) +#endif #if MICROPY_PY_OS_DUPTERM Q(dupterm) #endif |