From d4930f71fc2309b3f678980f7d0dbf8315049d4f Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Sat, 22 Aug 2020 12:47:24 -0400 Subject: [PATCH] kconfig: top level menu item for subsystems Move all subsystems into one single menu entry to reduce the clutter in the top level menuconfig. Signed-off-by: Anas Nashif --- subsys/Kconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/subsys/Kconfig b/subsys/Kconfig index 615ae9762b6..df722d6db84 100644 --- a/subsys/Kconfig +++ b/subsys/Kconfig @@ -3,6 +3,8 @@ # Copyright (c) 2016-2017 Intel Corporation # SPDX-License-Identifier: Apache-2.0 +menu "Sub Systems and OS Services" + source "subsys/bluetooth/Kconfig" source "subsys/console/Kconfig" @@ -42,3 +44,5 @@ source "subsys/fb/Kconfig" source "subsys/jwt/Kconfig" source "subsys/canbus/Kconfig" + +endmenu