diff options
author | Nitin Shivpure <nshivpur@codeaurora.org> | 2019-11-26 19:03:38 +0530 |
---|---|---|
committer | Nitin Shivpure <nshivpur@codeaurora.org> | 2019-11-26 19:12:51 +0530 |
commit | f15a48ec307c70790138ed115fd2962b9f58a010 (patch) | |
tree | 4ede610b4a3b5c3ae485fc11049a01b15099262a | |
parent | a98a294660cdecd78b7cb612fe3783ec7221bb31 (diff) |
BT: Moving TARGET_USE_QTI_BT_STACK to product make file
- if TARGET_FWK_SUPPORTS_FULL_VALUEADDS is true,
then TARGET_USE_QTI_BT_STACK should be set to true
to compile QC stack.
- TARGET_USE_QTI_BT_STACK must not be true to compile
pure aosp bt stack.
Change-Id: Iefe13fea9332c7995353b7da05f5c3c2707bcc38
-rw-r--r-- | bt-commonsys-intf-board.mk | 1 | ||||
-rw-r--r-- | bt-commonsys-intf-legacy-aosp-board.mk | 1 | ||||
-rw-r--r-- | bt-commonsys-intf-legacy-board.mk | 1 | ||||
-rw-r--r-- | bt-system-opensource-product.mk | 1 |
4 files changed, 1 insertions, 3 deletions
diff --git a/bt-commonsys-intf-board.mk b/bt-commonsys-intf-board.mk index df2694d..a7deb4a 100644 --- a/bt-commonsys-intf-board.mk +++ b/bt-commonsys-intf-board.mk @@ -4,7 +4,6 @@ BOARD_ANT_WIRELESS_DEVICE := "qualcomm-hidl" #BT BOARD_HAVE_BLUETOOTH := true BOARD_HAVE_BLUETOOTH_QCOM := true -TARGET_USE_QTI_BT_STACK := true #FM BOARD_HAVE_QCOM_FM := true diff --git a/bt-commonsys-intf-legacy-aosp-board.mk b/bt-commonsys-intf-legacy-aosp-board.mk index 4f3a543..f54ab6c 100644 --- a/bt-commonsys-intf-legacy-aosp-board.mk +++ b/bt-commonsys-intf-legacy-aosp-board.mk @@ -1,7 +1,6 @@ #BT BOARD_HAVE_BLUETOOTH := true BOARD_HAVE_BLUETOOTH_QCOM := true -TARGET_USE_QTI_BT_STACK := false #FM BOARD_HAVE_QCOM_FM := false diff --git a/bt-commonsys-intf-legacy-board.mk b/bt-commonsys-intf-legacy-board.mk index e23e28f..f9f0a8b 100644 --- a/bt-commonsys-intf-legacy-board.mk +++ b/bt-commonsys-intf-legacy-board.mk @@ -1,7 +1,6 @@ #BT BOARD_HAVE_BLUETOOTH := true BOARD_HAVE_BLUETOOTH_QCOM := true -TARGET_USE_QTI_BT_STACK := true #FM BOARD_HAVE_QCOM_FM := true diff --git a/bt-system-opensource-product.mk b/bt-system-opensource-product.mk index 26524f7..76c03bc 100644 --- a/bt-system-opensource-product.mk +++ b/bt-system-opensource-product.mk @@ -10,6 +10,7 @@ ifeq ($(BOARD_HAVE_BLUETOOTH_QCOM),true) PRODUCT_PACKAGES += Bluetooth ifeq ($(TARGET_FWK_SUPPORTS_FULL_VALUEADDS), true) +TARGET_USE_QTI_BT_STACK := true BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := vendor/qcom/opensource/commonsys-intf/bluetooth/build/qva/config PRODUCT_PACKAGES += libbluetooth_qti |