2019-04-06 21:08:09 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2016-10-20 04:05:35 +08:00
|
|
|
config BOARD_DEPRECATED
|
|
|
|
string
|
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
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.
|
2016-10-20 04:05:35 +08:00
|
|
|
|
2017-07-26 20:08:21 +08:00
|
|
|
config QEMU_TARGET
|
2017-08-01 04:38:03 +08:00
|
|
|
bool
|
2017-07-26 20:08:21 +08:00
|
|
|
help
|
|
|
|
Mark all QEMU targets with this variable for checking whether we are
|
|
|
|
running in an emulated environment.
|
|
|
|
|
2018-09-05 18:58:05 +08:00
|
|
|
# Note: $BOARD_DIR might be a glob pattern
|
2018-05-08 15:31:48 +08:00
|
|
|
|
2015-12-13 18:54:28 +08:00
|
|
|
choice
|
|
|
|
prompt "Board Selection"
|
2018-09-05 19:10:19 +08:00
|
|
|
source "$(BOARD_DIR)/Kconfig.board"
|
2015-12-13 18:54:28 +08:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
|
2016-03-16 01:27:39 +08:00
|
|
|
menu "Board Options"
|
2018-08-14 13:20:30 +08:00
|
|
|
# There might not be any board options, hence the optional source
|
2018-09-05 19:10:19 +08:00
|
|
|
osource "$(BOARD_DIR)/Kconfig"
|
2016-03-16 01:27:39 +08:00
|
|
|
endmenu
|