diff options
author | Nitin Shivpure <nshivpur@codeaurora.org> | 2019-12-12 23:19:52 +0530 |
---|---|---|
committer | Nitin Shivpure <nshivpur@codeaurora.org> | 2019-12-18 15:07:19 +0530 |
commit | 94fb9238e7704f79ecd1f128aa9203c948408d0b (patch) | |
tree | 62039407b6bf9dae829f232e3ae1cc778b18a211 | |
parent | f15a48ec307c70790138ed115fd2962b9f58a010 (diff) |
BT: Add static overlay config for qti & pure aosp bt stack
- Generic configuration is used for pure aosp bt stack.
- QVA configuration is used for qti bt stack.
CRs-fixed: 2589007
Change-Id: Ia40a996ba5164ba8a6fc5dde0dfb3ef859af1477
3 files changed, 78 insertions, 0 deletions
diff --git a/bt-system-opensource-product.mk b/bt-system-opensource-product.mk index 76c03bc..f334a42 100644 --- a/bt-system-opensource-product.mk +++ b/bt-system-opensource-product.mk @@ -11,7 +11,10 @@ PRODUCT_PACKAGES += Bluetooth ifeq ($(TARGET_FWK_SUPPORTS_FULL_VALUEADDS), true) TARGET_USE_QTI_BT_STACK := true + +PRODUCT_PACKAGE_OVERLAYS += vendor/qcom/opensource/commonsys-intf/bluetooth/overlay/qva BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := vendor/qcom/opensource/commonsys-intf/bluetooth/build/qva/config + PRODUCT_PACKAGES += libbluetooth_qti ifeq ($(TARGET_USE_QTI_BT_STACK),true) @@ -30,6 +33,7 @@ PRODUCT_PACKAGES_DEBUG += gatt_tool_qti_internal PRODUCT_PACKAGES_DEBUG += l2test_ertm PRODUCT_PACKAGES_DEBUG += rfc else +PRODUCT_PACKAGE_OVERLAYS += vendor/qcom/opensource/commonsys-intf/bluetooth/overlay/generic BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := vendor/qcom/opensource/commonsys-intf/bluetooth/build/generic/config endif #TARGET_FWK_SUPPORTS_FULL_VALUEADDS diff --git a/overlay/generic/packages/apps/Bluetooth/res/values/config.xml b/overlay/generic/packages/apps/Bluetooth/res/values/config.xml new file mode 100644 index 0000000..bcf4e37 --- /dev/null +++ b/overlay/generic/packages/apps/Bluetooth/res/values/config.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (c) 2014, 2016-2019, The Linux Foundation. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted (subject to the limitations in the + disclaimer below) provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of the Linux Foundation nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE + GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT + HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN + IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +--> +<resources> + <bool name="profile_supported_sap">true</bool> +</resources> diff --git a/overlay/qva/vendor/qcom/opensource/commonsys/packages/apps/Bluetooth/res/values/config.xml b/overlay/qva/vendor/qcom/opensource/commonsys/packages/apps/Bluetooth/res/values/config.xml new file mode 100644 index 0000000..2d875d1 --- /dev/null +++ b/overlay/qva/vendor/qcom/opensource/commonsys/packages/apps/Bluetooth/res/values/config.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (c) 2014, 2016-2019, The Linux Foundation. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted (subject to the limitations in the + disclaimer below) provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of the Linux Foundation nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE + GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT + HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN + IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +--> +<resources> + <bool name="profile_supported_hfpclient">false</bool> + <bool name="profile_supported_avrcp_controller">true</bool> + <bool name="profile_supported_a2dp_sink">true</bool> + <bool name="profile_supported_sap">true</bool> + <bool name="profile_supported_ba">true</bool> + <bool name="profile_supported_hid_device">false</bool> + <bool name="profile_supported_avrcp_target">false</bool> +</resources> |