File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,6 @@ SRC_SUPERVISOR = \
18
18
supervisor/shared/translate/translate.c \
19
19
supervisor/shared/workflow.c
20
20
21
- ifeq ($(DISABLE_FILESYSTEM ) ,1)
22
- SRC_SUPERVISOR += supervisor/stub/filesystem.c
23
- else
24
- SRC_SUPERVISOR += supervisor/shared/filesystem.c
25
- endif
26
-
27
21
NO_USB ?= $(wildcard supervisor/usb.c)
28
22
29
23
INTERNAL_FLASH_FILESYSTEM ?= 0
@@ -38,6 +32,12 @@ CFLAGS += -DSPI_FLASH_FILESYSTEM=$(SPI_FLASH_FILESYSTEM)
38
32
DISABLE_FILESYSTEM ?= 0
39
33
CFLAGS += -DDISABLE_FILESYSTEM=$(DISABLE_FILESYSTEM )
40
34
35
+ ifeq ($(DISABLE_FILESYSTEM ) ,1)
36
+ SRC_SUPERVISOR += supervisor/stub/filesystem.c
37
+ else
38
+ SRC_SUPERVISOR += supervisor/shared/filesystem.c
39
+ endif
40
+
41
41
ifeq ($(CIRCUITPY_BLEIO ) ,1)
42
42
SRC_SUPERVISOR += supervisor/shared/bluetooth/bluetooth.c
43
43
CIRCUITPY_CREATOR_ID ?= $(USB_VID )
You can’t perform that action at this time.
0 commit comments