zephyr/boards/Kconfig
Maureen Helm 3e37011185 boards: Fix QEMU_TARGET config prompt and default
The default boolean setting for QEMU_TARGET was incorrectly placed in
the prompt field, so it was showing up as a config option in 'make
menuconfig' when it should be hidden.

Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
2017-07-31 19:39:54 -04:00

26 lines
553 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
default n
help
Mark all QEMU targets with this variable for checking whether we are
running in an emulated environment.
choice
prompt "Board Selection"
source "boards/*/*/Kconfig.board"
endchoice
menu "Board Options"
source "boards/*/*/Kconfig"
endmenu