From b9695c07cd5b5b0ad15cc2e31e06abc42eabc40d Mon Sep 17 00:00:00 2001 From: Joakim Andersson Date: Thu, 10 Dec 2020 12:24:41 +0100 Subject: [PATCH] Bluetooth: kconfig: Fix SMP dependency on BT_ECC The Bluetooth SMP protocol depends on the BT_ECC for the LE Secure Connections pairing. Since this feature cannot be disabled we must select this dependency. Signed-off-by: Joakim Andersson --- subsys/bluetooth/host/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/bluetooth/host/Kconfig b/subsys/bluetooth/host/Kconfig index 9f7a6d60f62..cc072b295a6 100644 --- a/subsys/bluetooth/host/Kconfig +++ b/subsys/bluetooth/host/Kconfig @@ -328,6 +328,7 @@ config BT_SMP select TINYCRYPT_AES select TINYCRYPT_AES_CMAC select BT_RPA + select BT_ECC help This option enables support for the Security Manager Protocol (SMP), making it possible to pair devices over LE.