2015-05-21 00:40:39 +08:00
|
|
|
# Kconfig - Bluetooth LE driver configuration options
|
2015-05-11 10:52:56 +08:00
|
|
|
|
|
|
|
#
|
2016-06-10 17:10:18 +08:00
|
|
|
# Copyright (c) 2015-2016 Intel Corporation
|
2015-05-11 10:52:56 +08:00
|
|
|
#
|
2017-01-19 09:01:01 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2015-05-11 10:52:56 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Bluetooth options
|
|
|
|
#
|
2016-03-17 04:05:56 +08:00
|
|
|
|
2017-08-09 19:54:22 +08:00
|
|
|
# Controller support is an HCI driver in itself, so these HCI driver
|
|
|
|
# options are only applicable if controller support hasn't been enabled.
|
2017-08-14 19:45:13 +08:00
|
|
|
if BT && ! BT_CTLR
|
2016-03-17 04:05:56 +08:00
|
|
|
|
|
|
|
menu "Bluetooth Drivers"
|
|
|
|
|
2017-08-09 14:21:11 +08:00
|
|
|
if BT_HCI
|
2016-10-27 21:55:01 +08:00
|
|
|
source "drivers/bluetooth/hci/Kconfig"
|
2016-11-09 18:23:21 +08:00
|
|
|
endif
|
2016-03-17 04:05:56 +08:00
|
|
|
|
2017-08-09 14:21:11 +08:00
|
|
|
if BT_CUSTOM
|
2017-05-25 09:09:15 +08:00
|
|
|
# Insert here any custom (non-HCI) offload drives
|
2016-11-09 18:23:21 +08:00
|
|
|
endif
|
2016-03-17 04:05:56 +08:00
|
|
|
|
2015-05-11 10:52:56 +08:00
|
|
|
endmenu
|
2016-03-17 04:05:56 +08:00
|
|
|
|
2017-08-14 19:45:13 +08:00
|
|
|
endif # BT && ! BT_CTLR
|