diff --git a/board-info.txt b/board-info.txt index b06c65a..90cc197 100644 --- a/board-info.txt +++ b/board-info.txt @@ -1 +1,2 @@ require board=cloudripper|ravenclaw|cheetah|panther +require partition-exists=vendor_kernel_boot diff --git a/device-cheetah.mk b/device-cheetah.mk index 96aa861..019204d 100644 --- a/device-cheetah.mk +++ b/device-cheetah.mk @@ -22,6 +22,7 @@ $(call inherit-product-if-exists, vendor/google_devices/gs201/prebuilts/device-v $(call inherit-product-if-exists, vendor/google_devices/gs201/proprietary/device-vendor.mk) $(call inherit-product-if-exists, vendor/google_devices/pantah/proprietary/cheetah/device-vendor-cheetah.mk) $(call inherit-product-if-exists, vendor/google_devices/cheetah/proprietary/device-vendor.mk) +$(call inherit-product-if-exists, vendor/google_devices/pantah/proprietary/WallpapersCheetah.mk) DEVICE_PACKAGE_OVERLAYS += device/google/pantah/cheetah/overlay @@ -274,3 +275,12 @@ PRODUCT_VENDOR_PROPERTIES += \ # Bluetooth AAC VBR PRODUCT_PRODUCT_PROPERTIES += \ persist.bluetooth.a2dp_aac.vbr_supported=true + +# Override BQR mask to enable LE Audio Choppy report +ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT))) +PRODUCT_PRODUCT_PROPERTIES += \ + persist.bluetooth.bqr.event_mask=262238 +else +PRODUCT_PRODUCT_PROPERTIES += \ + persist.bluetooth.bqr.event_mask=94 +endif diff --git a/device-panther.mk b/device-panther.mk index 9312a70..3295c99 100644 --- a/device-panther.mk +++ b/device-panther.mk @@ -22,6 +22,7 @@ $(call inherit-product-if-exists, vendor/google_devices/gs201/prebuilts/device-v $(call inherit-product-if-exists, vendor/google_devices/gs201/proprietary/device-vendor.mk) $(call inherit-product-if-exists, vendor/google_devices/pantah/proprietary/panther/device-vendor-panther.mk) $(call inherit-product-if-exists, vendor/google_devices/panther/proprietary/device-vendor.mk) +$(call inherit-product-if-exists, vendor/google_devices/pantah/proprietary/WallpapersPanther.mk) DEVICE_PACKAGE_OVERLAYS += device/google/pantah/panther/overlay @@ -261,3 +262,12 @@ PRODUCT_VENDOR_PROPERTIES += \ # Bluetooth AAC VBR PRODUCT_PRODUCT_PROPERTIES += \ persist.bluetooth.a2dp_aac.vbr_supported=true + +# Override BQR mask to enable LE Audio Choppy report +ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT))) +PRODUCT_PRODUCT_PROPERTIES += \ + persist.bluetooth.bqr.event_mask=262238 +else +PRODUCT_PRODUCT_PROPERTIES += \ + persist.bluetooth.bqr.event_mask=94 +endif