1# Copyright (c) 2021 Nordic Semiconductor
2#
3# SPDX-License-Identifier: Apache-2.0
4
5rsource "Kconfig.$(HWM_SCHEME)"
6
7comment "Sysbuild image configuration"
8
9osource "$(KCONFIG_BOARD_DIR)/Kconfig.sysbuild"
10osource "$(KCONFIG_BINARY_DIR)/soc/Kconfig.sysbuild"
11
12menu "Modules"
13
14source "modules/Kconfig.sysbuild"
15
16endmenu
17
18config EXPERIMENTAL
19	bool
20	help
21	  Symbol that must be selected by a feature if it is considered to be
22	  at an experimental implementation stage.
23
24config WARN_EXPERIMENTAL
25	bool
26	prompt "Warn on experimental usage"
27	help
28	  Print a warning when the Kconfig tree is parsed if any experimental
29	  features are enabled.
30
31config DEPRECATED
32	bool
33	help
34	  Symbol that must be selected by a feature or module if it is
35	  considered to be deprecated.
36
37config WARN_DEPRECATED
38	bool
39	default y
40	prompt "Warn on deprecated usage"
41	help
42	  Print a warning when the Kconfig tree is parsed if any deprecated
43	  features are enabled.
44
45rsource "images/Kconfig"
46
47menu "Build options"
48
49rsource "build/Kconfig"
50
51endmenu
52