mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 08:02:45 +00:00
In order to provide a way to control boards/shields compatibility, provide connector flags. One should select this flag in Kconfig.board to state connector compatibility for the board. Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
31 lines
670 B
Plaintext
31 lines
670 B
Plaintext
|
|
config BOARD_DEPRECATED
|
|
string
|
|
help
|
|
This hidden option is set in the board configuration and indicates
|
|
the Zephyr release that the board configuration will be removed.
|
|
When set, any build for that board will generate a clearly visible
|
|
deprecation warning.
|
|
|
|
config QEMU_TARGET
|
|
bool
|
|
help
|
|
Mark all QEMU targets with this variable for checking whether we are
|
|
running in an emulated environment.
|
|
|
|
# $ENV_VAR_BOARD_DIR might be a glob pattern
|
|
|
|
choice
|
|
prompt "Board Selection"
|
|
gsource "$ENV_VAR_BOARD_DIR/Kconfig.board"
|
|
endchoice
|
|
|
|
|
|
menu "Board Options"
|
|
gsource "$ENV_VAR_BOARD_DIR/Kconfig"
|
|
endmenu
|
|
|
|
menu "Shields"
|
|
source "boards/shields/Kconfig"
|
|
endmenu
|