From 947d78a04eeb7f8a24cf47afcdf538a3cee2aca8 Mon Sep 17 00:00:00 2001 From: Frantisek Hrbata Date: Tue, 4 Nov 2025 11:39:19 +0100 Subject: [PATCH] fix(kconfig): distinguish project configuration menu for excluded components Currently both menu configs, for component's project configuration and component's configuration, for components not included in the build have the same name: "Configuration for components not included in the build". This might be confusing. Let's use "Project configuration for components not included in the build" for component Kconfig.projbuild files. Signed-off-by: Frantisek Hrbata --- Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kconfig b/Kconfig index b3506cfd7d..fec451c131 100644 --- a/Kconfig +++ b/Kconfig @@ -729,7 +729,7 @@ mainmenu "Espressif IoT Development Framework Configuration" endmenu - menu "Configuration for components not included in the build" + menu "Project configuration for components not included in the build" depends on "${IDF_BUILD_V2}" osource "$COMPONENT_KCONFIGS_PROJBUILD_EXCLUDED_SOURCE_FILE" endmenu