From 658f6bc71fbe80e11c2d5945b5e744f47bfe17bf Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Tue, 28 May 2019 14:22:51 -0400 Subject: [PATCH] kconfig: enclose module Kconfigs into a menu Solve the issue of having all module Kconfig land in the top level Kconfig menu when viewed in menuconfig. Signed-off-by: Anas Nashif --- Kconfig.zephyr | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Kconfig.zephyr b/Kconfig.zephyr index 05eafd9e4bf..749b8204182 100644 --- a/Kconfig.zephyr +++ b/Kconfig.zephyr @@ -7,8 +7,12 @@ # SPDX-License-Identifier: Apache-2.0 # +menu "Modules" + source "$(CMAKE_BINARY_DIR)/Kconfig.modules" +endmenu + # Include these first so that any properties (e.g. defaults) below can be # overriden in *.defconfig files (by defining symbols in multiple locations). # After merging all the symbol definitions, Kconfig picks the first property