extmod/fsusermount: Make configurable with MICROPY_FSUSERMOUNT.

This commit is contained in:
Paul Sokolovsky
2015-11-25 00:43:11 +02:00
parent 3a1bbcc2ef
commit f0fbab7ca7
3 changed files with 11 additions and 0 deletions

View File

@@ -469,6 +469,11 @@ typedef double mp_float_t;
#define MICROPY_BUILTIN_METHOD_CHECK_SELF_ARG (1)
#endif
// Support for user-space VFS mount (selected ports)
#ifndef MICROPY_FSUSERMOUNT
#define MICROPY_FSUSERMOUNT (0)
#endif
/*****************************************************************************/
/* Fine control over Python builtins, classes, modules, etc */