esp8266/boards: Allow configuring btree/FAT/LFS2 support when building.

Prior to e0905e85a7 it was possible to
disable btree support on build.  This patch allows to configure btree
support on make again and also the two new introduced options for FAT and
LFS2 filesystems.
This commit is contained in:
Rafael Römhild 2020-05-11 12:24:36 +02:00 committed by Damien George
parent 801f7dca78
commit 8f3167a962
2 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
LD_FILES = boards/esp8266_2m.ld
MICROPY_PY_BTREE = 1
MICROPY_VFS_FAT = 1
MICROPY_VFS_LFS2 = 1
MICROPY_PY_BTREE ?= 1
MICROPY_VFS_FAT ?= 1
MICROPY_VFS_LFS2 ?= 1
FROZEN_MANIFEST ?= $(BOARD_DIR)/manifest.py

View File

@ -1,4 +1,4 @@
LD_FILES = boards/esp8266_1m.ld
MICROPY_PY_BTREE = 1
MICROPY_VFS_LFS2 = 1
MICROPY_PY_BTREE ?= 1
MICROPY_VFS_LFS2 ?= 1