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).
This commit is contained in:
parent
63068875c5
commit
7743b1523e
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue