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