1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

makefiles/stdio: handle case for bootloader_nrfutil blacklist

This commit is contained in:
Alexandre Abadie 2020-03-18 16:51:42 +01:00
parent 96cf9ac754
commit a12aeca9df
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -44,7 +44,8 @@ ifneq (,$(filter stdio_uart,$(USEMODULE)))
endif
ifeq (,$(filter stdio_cdc_acm,$(USEMODULE)))
# The arduino bootloader feature cannot be used if the stdio_cdc_acm module
# is not used
# The arduino and nrfutil bootloader features cannot be used if the
# stdio_cdc_acm module is not used
FEATURES_BLACKLIST += bootloader_arduino
FEATURES_BLACKLIST += bootloader_nrfutil
endif