Skip to content

Commit 8f3167a

Browse files
rroemhilddpgeorge
authored andcommitted
esp8266/boards: Allow configuring btree/FAT/LFS2 support when building.
Prior to e0905e8 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.
1 parent 801f7dc commit 8f3167a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
LD_FILES = boards/esp8266_2m.ld
22

3-
MICROPY_PY_BTREE = 1
4-
MICROPY_VFS_FAT = 1
5-
MICROPY_VFS_LFS2 = 1
3+
MICROPY_PY_BTREE ?= 1
4+
MICROPY_VFS_FAT ?= 1
5+
MICROPY_VFS_LFS2 ?= 1
66

77
FROZEN_MANIFEST ?= $(BOARD_DIR)/manifest.py
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
LD_FILES = boards/esp8266_1m.ld
22

3-
MICROPY_PY_BTREE = 1
4-
MICROPY_VFS_LFS2 = 1
3+
MICROPY_PY_BTREE ?= 1
4+
MICROPY_VFS_LFS2 ?= 1

0 commit comments

Comments
 (0)