diff options
| author | Hierophect <hierophect@gmail.com> | 2019-08-18 19:23:52 -0400 |
|---|---|---|
| committer | Hierophect <hierophect@gmail.com> | 2019-08-19 10:47:18 -0400 |
| commit | e490e6361fb695266d4ee46ca983cc86f17dafd5 (patch) | |
| tree | 88e25c7888c6c6485b51242dacd6e058945cc44f /supervisor | |
| parent | 95411a62b3bb2ae3c5a1912dc3d8f58a0988ec46 (diff) | |
Add warnings, cosmetic fixes, remove vestigial modules
Diffstat (limited to 'supervisor')
| -rw-r--r-- | supervisor/supervisor.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/supervisor/supervisor.mk b/supervisor/supervisor.mk index 4870f15d8..19516a30f 100644 --- a/supervisor/supervisor.mk +++ b/supervisor/supervisor.mk @@ -44,10 +44,10 @@ ifdef EXTERNAL_FLASH_DEVICES SRC_SUPERVISOR += supervisor/qspi_flash.c supervisor/shared/external_flash/qspi_flash.c endif else - ifneq ($(DISABLE_FILESYSTEM),1) - SRC_SUPERVISOR += supervisor/internal_flash.c - else + ifeq ($(DISABLE_FILESYSTEM),1) SRC_SUPERVISOR += supervisor/stub/internal_flash.c + else + SRC_SUPERVISOR += supervisor/internal_flash.c endif endif @@ -105,7 +105,7 @@ autogen_usb_descriptor.intermediate: ../../tools/gen_usb_descriptor.py Makefile --serial_number_length $(USB_SERIAL_NUMBER_LENGTH)\ --output_c_file $(BUILD)/autogen_usb_descriptor.c\ --output_h_file $(BUILD)/genhdr/autogen_usb_descriptor.h\ - --reduced_endpoint_mode $(USB_REDUCED_ENDPOINT) + --cdc_and_msc_only $(USB_CDC_AND_MSC_ONLY) CIRCUITPY_DISPLAY_FONT ?= "../../tools/fonts/ter-u12n.bdf" |
