2019-04-06 15:08:09 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2020-01-09 23:20:44 +01:00
|
|
|
config BOARD_DEPRECATED_RELEASE
|
2016-10-19 22:05:35 +02:00
|
|
|
string
|
|
|
|
help
|
2017-12-13 16:08:21 +01: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-19 22:05:35 +02:00
|
|
|
|
2017-07-26 14:08:21 +02:00
|
|
|
config QEMU_TARGET
|
2017-07-31 22:38:03 +02:00
|
|
|
bool
|
2017-07-26 14:08:21 +02:00
|
|
|
help
|
|
|
|
Mark all QEMU targets with this variable for checking whether we are
|
|
|
|
running in an emulated environment.
|
|
|
|
|
2018-09-05 12:58:05 +02:00
|
|
|
# Note: $BOARD_DIR might be a glob pattern
|
2018-05-08 09:31:48 +02:00
|
|
|
|
2015-12-13 11:54:28 +01:00
|
|
|
choice
|
2019-11-01 10:24:07 +01:00
|
|
|
prompt "Board Selection"
|
|
|
|
|
2018-09-05 13:10:19 +02:00
|
|
|
source "$(BOARD_DIR)/Kconfig.board"
|
2019-11-01 10:24:07 +01:00
|
|
|
|
2015-12-13 11:54:28 +01:00
|
|
|
endchoice
|
|
|
|
|
2019-11-22 10:37:01 +01:00
|
|
|
# Parse shields references
|
|
|
|
# Don't do it as a menuconfig, as shield selection is a CMake feature.
|
|
|
|
rsource "shields/*/Kconfig.shield"
|
2015-12-13 11:54:28 +01:00
|
|
|
|
2016-03-15 18:27:39 +01:00
|
|
|
menu "Board Options"
|
2020-05-12 02:44:51 +02:00
|
|
|
config QEMU_ICOUNT
|
|
|
|
bool "QEMU icount mode"
|
|
|
|
depends on QEMU_TARGET
|
|
|
|
default y if !NETWORKING
|
|
|
|
help
|
|
|
|
Enable QEMU virtual instruction counter. The virtual cpu will
|
|
|
|
execute one instruction every 2^N ns of virtual time. This will
|
|
|
|
give deterministic execution times from the guest point of view.
|
|
|
|
|
2018-08-14 07:20:30 +02:00
|
|
|
# There might not be any board options, hence the optional source
|
2018-09-05 13:10:19 +02:00
|
|
|
osource "$(BOARD_DIR)/Kconfig"
|
2016-03-15 18:27:39 +01:00
|
|
|
endmenu
|