2022-06-22 17:05:49 +08:00
|
|
|
# Copyright (c) 2021 Nordic Semiconductor
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2023-11-03 20:47:54 +08:00
|
|
|
rsource "Kconfig.$(HWM_SCHEME)"
|
|
|
|
|
2022-06-22 17:05:49 +08:00
|
|
|
comment "Sysbuild image configuration"
|
|
|
|
|
|
|
|
osource "$(BOARD_DIR)/Kconfig.sysbuild"
|
2024-04-10 18:30:24 +08:00
|
|
|
osource "$(KCONFIG_BINARY_DIR)/soc/Kconfig.sysbuild"
|
2022-06-22 17:05:49 +08:00
|
|
|
|
2023-02-20 18:00:38 +08:00
|
|
|
menu "Modules"
|
|
|
|
|
|
|
|
source "modules/Kconfig.sysbuild"
|
|
|
|
|
|
|
|
endmenu
|
|
|
|
|
2022-06-22 17:05:49 +08:00
|
|
|
config EXPERIMENTAL
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Symbol that must be selected by a feature if it is considered to be
|
|
|
|
at an experimental implementation stage.
|
|
|
|
|
|
|
|
config WARN_EXPERIMENTAL
|
|
|
|
bool
|
|
|
|
prompt "Warn on experimental usage"
|
|
|
|
help
|
|
|
|
Print a warning when the Kconfig tree is parsed if any experimental
|
|
|
|
features are enabled.
|
|
|
|
|
|
|
|
config DEPRECATED
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Symbol that must be selected by a feature or module if it is
|
|
|
|
considered to be deprecated.
|
|
|
|
|
|
|
|
config WARN_DEPRECATED
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
prompt "Warn on deprecated usage"
|
|
|
|
help
|
|
|
|
Print a warning when the Kconfig tree is parsed if any deprecated
|
|
|
|
features are enabled.
|
2022-06-22 17:19:05 +08:00
|
|
|
|
2023-08-25 18:45:14 +08:00
|
|
|
rsource "images/Kconfig"
|
2024-03-14 18:37:01 +08:00
|
|
|
|
|
|
|
menu "Build options"
|
|
|
|
|
|
|
|
rsource "build/Kconfig"
|
|
|
|
|
|
|
|
endmenu
|