From f0fbab7ca790f4f316bc2a9a44dc3a83f442664d Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Wed, 25 Nov 2015 00:43:11 +0200 Subject: extmod/fsusermount: Make configurable with MICROPY_FSUSERMOUNT. --- py/mpconfig.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'py') diff --git a/py/mpconfig.h b/py/mpconfig.h index 1453560e0..686f90c25 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -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 */ -- cgit v1.2.3