mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-14 18:36:25 +00:00
Cleanup unused leftover from shield development. These flags are not actually useful, nor used as dts connectors are sufficient to control board to shield binding is operational and dtc provides meaningful error message when this is not the case. Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
32 lines
730 B
Plaintext
32 lines
730 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.
|
|
|
|
# Note: $BOARD_DIR might be a glob pattern
|
|
|
|
choice
|
|
prompt "Board Selection"
|
|
source "$(BOARD_DIR)/Kconfig.board"
|
|
endchoice
|
|
|
|
|
|
menu "Board Options"
|
|
# There might not be any board options, hence the optional source
|
|
osource "$(BOARD_DIR)/Kconfig"
|
|
endmenu
|
|
|
|
menu "Shields"
|
|
source "boards/shields/*/Kconfig.shield"
|
|
endmenu
|