mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
makefiles/info-global.inc.mk: add info-boards-features-blacklisted
This commit is contained in:
parent
ee319a40ed
commit
8eee779c50
@ -174,7 +174,14 @@ include $(RIOTMAKE)/boards.inc.mk
|
||||
# Debug targets for build system migration
|
||||
include $(RIOTMAKE)/dependencies_debug.inc.mk
|
||||
|
||||
GLOBAL_GOALS += buildtest buildtest-indocker info-boards-supported info-boards-features-missing info-buildsizes info-buildsizes-diff
|
||||
GLOBAL_GOALS += buildtest \
|
||||
buildtest-indocker \
|
||||
info-boards-features-blacklisted \
|
||||
info-boards-features-missing \
|
||||
info-boards-supported \
|
||||
info-buildsizes info-buildsizes-diff \
|
||||
#
|
||||
|
||||
ifneq (, $(filter $(GLOBAL_GOALS), $(MAKECMDGOALS)))
|
||||
BOARD=none
|
||||
endif
|
||||
|
@ -1,5 +1,9 @@
|
||||
.PHONY: info-buildsizes info-buildsizes-diff info-features-missing \
|
||||
info-boards-features-missing
|
||||
.PHONY: info-buildsizes \
|
||||
info-buildsizes-diff \
|
||||
info-boards-supported \
|
||||
info-boards-features-missing \
|
||||
info-boards-features-blacklisted \
|
||||
#
|
||||
|
||||
# Perform dependency resolution without having included
|
||||
# $(RIOTBASE)/Makefile.features for now. This results in no optional modules and
|
||||
@ -126,6 +130,9 @@ info-boards-supported:
|
||||
info-boards-features-missing:
|
||||
@for f in $(BOARDS_FEATURES_MISSING); do echo $${f}; done | column -t
|
||||
|
||||
info-boards-features-blacklisted:
|
||||
@for f in $(BOARDS_FEATURES_USED_BLACKLISTED); do echo $${f}; done | column -t
|
||||
|
||||
# Reset BOARDSDIR so unchanged for makefiles included after, for now only
|
||||
# needed for buildtests.inc.mk
|
||||
BOARDDIR := $(BOARDDIR_GLOBAL)
|
||||
|
Loading…
Reference in New Issue
Block a user