1# Copyright (c) 2019 Intel Corporation
2# Copyright (c) 2022 Nordic Semiconductor
3#
4# SPDX-License-Identifier: Apache-2.0
5
6comment "Available modules."
7
8source "$(KCONFIG_BINARY_DIR)/Kconfig.sysbuild.modules"
9
10comment "Unavailable modules, please install those via the project manifest."
11
12# List of comments to display when Zephyr modules are not available, please
13# use the following syntax:
14# ---------------------------------------------------
15# comment "<module_name> module not available."
16#	depends on !SYSBUILD_<MODULE_NAME_UPPER>_MODULE
17#
18# Remember to add the following code inside the `<module>/Kconfig file:
19# ---------------------------------------------------
20# config SYSBUILD_<MODULE_NAME_UPPER>_MODULE
21# 	bool
22
23# This ensures that symbols are available in Kconfig for dependency checking
24# and referencing, while keeping the settings themselves unavailable when the
25# modules are not present in the workspace
26if 0
27osource "modules/*/Kconfig.sysbuild"
28endif
29