diff options
author | Damien George <damien.p.george@gmail.com> | 2017-04-26 11:16:52 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-04-26 11:16:52 +1000 |
commit | 7743b1523edee4cabffdfdc7d3d05fef24f38f8d (patch) | |
tree | 4167d4336d637df2f1c2d1678d09dfce8d21a4d4 /unix | |
parent | 63068875c5b3bb754af4fd5f8006f6d9c0435f7d (diff) | |
download | micropython-7743b1523edee4cabffdfdc7d3d05fef24f38f8d.tar.gz micropython-7743b1523edee4cabffdfdc7d3d05fef24f38f8d.zip |
unix: Remove obsolete MICROPY_FATFS macro.
It doesn't do anything. The VFS feature is controlled by MICROPY_VFS and
the FatFS driver, by MICROPY_VFS_FAT (which are set in mpconfigport.h).
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile | 2 | ||||
-rw-r--r-- | unix/mpconfigport.mk | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/unix/Makefile b/unix/Makefile index 5469853065..e08e817bca 100644 --- a/unix/Makefile +++ b/unix/Makefile @@ -213,7 +213,7 @@ minimal: BUILD=build-minimal PROG=micropython_minimal FROZEN_DIR= \ MICROPY_PY_BTREE=0 MICROPY_PY_FFI=0 MICROPY_PY_SOCKET=0 MICROPY_PY_THREAD=0 \ MICROPY_PY_TERMIOS=0 MICROPY_PY_USSL=0 \ - MICROPY_USE_READLINE=0 MICROPY_FATFS=0 + MICROPY_USE_READLINE=0 # build interpreter with nan-boxing as object model nanbox: diff --git a/unix/mpconfigport.mk b/unix/mpconfigport.mk index 3b335ae78e..8819546bfe 100644 --- a/unix/mpconfigport.mk +++ b/unix/mpconfigport.mk @@ -8,9 +8,6 @@ MICROPY_FORCE_32BIT = 0 # 1 - use MicroPython version of readline MICROPY_USE_READLINE = 1 -# Whether to enable FatFs VFS -MICROPY_FATFS = 1 - # btree module using Berkeley DB 1.xx MICROPY_PY_BTREE = 1 |