mirror of
https://github.com/micropython/micropython.git
synced 2026-01-08 13:10:21 +01:00
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:
committed by
Damien George
parent
801f7dca78
commit
8f3167a962
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user