You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
530 B
27 lines
530 B
# Bluetooth LE driver configuration options |
|
|
|
# Copyright (c) 2015-2016 Intel Corporation |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
# |
|
# Bluetooth options |
|
# |
|
|
|
# Controller support is an HCI driver in itself, so these HCI driver |
|
# options are only applicable if controller support hasn't been enabled. |
|
menuconfig BT_DRIVERS |
|
bool "Bluetooth drivers" |
|
default y |
|
depends on BT |
|
|
|
if BT_DRIVERS |
|
|
|
if BT_HCI |
|
source "drivers/bluetooth/hci/Kconfig" |
|
endif |
|
|
|
if BT_CUSTOM |
|
# Insert here any custom (non-HCI) offload drives |
|
endif |
|
|
|
endif # BT_DRIVERS
|
|
|