1# Copyright (c) 2023 Nordic Semiconductor 2# 3# SPDX-License-Identifier: Apache-2.0 4 5config BOARD 6 string 7 default "$(BOARD)" 8 help 9 This option holds the name of the board and is used to locate the files 10 related to the board in the source tree (under boards/). 11 The Board is the first location where we search for a linker.ld file, 12 if not found we look for the linker file in 13 soc/<arch>/<family>/<series> 14 15config BOARD_REVISION 16 def_string "$(BOARD_REVISION)" 17 help 18 If the BOARD has a revision field set, this is the revision. 19 Otherwise, it is the empty string. For example, if BOARD is 20 "plank@foo", this option will be "foo". If BOARD is "plank", 21 this option will be the empty string. 22 23config BOARD_DEPRECATED_RELEASE 24 string 25 help 26 This hidden option is set in the board configuration and indicates 27 the Zephyr release that the board configuration will be removed. 28 When set, any build for that board will generate a clearly visible 29 deprecation warning. 30 31source "boards/Kconfig.$(HWM_SCHEME)" 32source "soc/Kconfig.$(HWM_SCHEME)" 33