From 4bb3c32777fc777729a9046995148a57f2022079 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Cab=C3=A9?= Date: Wed, 29 Jan 2025 10:51:22 +0100 Subject: [PATCH] llext: make EDK Kconfig menu visible only when LLEXT is enabled MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Properly guard LLEXT EDK menu to prevent associated options from bleeding into project conf even when LLEXT is disabled Signed-off-by: Benjamin Cabé --- subsys/llext/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subsys/llext/Kconfig b/subsys/llext/Kconfig index 5d98bf31e030..962c6d2723ec 100644 --- a/subsys/llext/Kconfig +++ b/subsys/llext/Kconfig @@ -113,8 +113,6 @@ module = LLEXT module-str = llext source "subsys/logging/Kconfig.template.log_config" -endif - menu "Linkable loadable Extension Development Kit (EDK)" config LLEXT_EDK_NAME @@ -135,3 +133,5 @@ config LLEXT_EDK_USERSPACE_ONLY not contain the routing code, and only generate the userspace one. endmenu + +endif # LLEXT