Skip to content

Commit 7743b15

Browse files
committed
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).
1 parent 6306887 commit 7743b15

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

unix/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ minimal:
213213
BUILD=build-minimal PROG=micropython_minimal FROZEN_DIR= \
214214
MICROPY_PY_BTREE=0 MICROPY_PY_FFI=0 MICROPY_PY_SOCKET=0 MICROPY_PY_THREAD=0 \
215215
MICROPY_PY_TERMIOS=0 MICROPY_PY_USSL=0 \
216-
MICROPY_USE_READLINE=0 MICROPY_FATFS=0
216+
MICROPY_USE_READLINE=0
217217

218218
# build interpreter with nan-boxing as object model
219219
nanbox:

unix/mpconfigport.mk

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ MICROPY_FORCE_32BIT = 0
88
# 1 - use MicroPython version of readline
99
MICROPY_USE_READLINE = 1
1010

11-
# Whether to enable FatFs VFS
12-
MICROPY_FATFS = 1
13-
1411
# btree module using Berkeley DB 1.xx
1512
MICROPY_PY_BTREE = 1
1613

0 commit comments

Comments
 (0)