mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-12 03:36:38 +00:00
Bool symbols implicitly default to 'n'. A 'default n' can make sense e.g. in a Kconfig.defconfig file, if you want to override a 'default y' on the base definition of the symbol. It isn't used like that for any of the removed properties though. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
27 lines
614 B
Plaintext
27 lines
614 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
|