From dbdc8a24b0bf2782750c84f0dde581bdf050f819 Mon Sep 17 00:00:00 2001 From: Vinayak Kariappa Chettimada Date: Sat, 13 May 2017 05:46:59 +0200 Subject: [PATCH] Bluetooth: kconfig: Use menu instead of menuconfig To be consistent with other subsystem menu, use menu for Bluetooth support in Kconfig instead of menuconfig which showed up as checkbox. Signed-off-by: Vinayak Kariappa Chettimada --- subsys/bluetooth/Kconfig | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/subsys/bluetooth/Kconfig b/subsys/bluetooth/Kconfig index f8c7feb5f98..a8bb69aaecb 100644 --- a/subsys/bluetooth/Kconfig +++ b/subsys/bluetooth/Kconfig @@ -5,7 +5,9 @@ # SPDX-License-Identifier: Apache-2.0 # -menuconfig BLUETOOTH +menu "Bluetooth" + +config BLUETOOTH bool "Bluetooth support" select NET_BUF help @@ -99,3 +101,5 @@ source "subsys/bluetooth/controller/Kconfig" endif # BLUETOOTH_HCI endif # BLUETOOTH + +endmenu