From 696fe651a198404026d5ccc14048a385d7de8b5b Mon Sep 17 00:00:00 2001 From: Adam Shih Date: Tue, 29 Nov 2022 09:53:18 +0800 Subject: [PATCH 1/2] use syna setting from gs-common Bug: 256521567 Test: adb bugreport Change-Id: I71d8041ba57c78a7b5eba3688ba366735f0739e5 --- device-cloudripper.mk | 1 + device-ravenclaw.mk | 1 + 2 files changed, 2 insertions(+) diff --git a/device-cloudripper.mk b/device-cloudripper.mk index 1582fe1..447bf2a 100644 --- a/device-cloudripper.mk +++ b/device-cloudripper.mk @@ -26,6 +26,7 @@ include device/google/gs201/device-shipping-common.mk include device/google/pantah/audio/cloudripper/audio-tables.mk include hardware/google/pixel/vibrator/cs40l26/device.mk include device/google/gs-common/bcmbt/bluetooth.mk +include device/google/gs-common/touch/syna/syna.mk # go/lyric-soong-variables $(call soong_config_set,lyric,camera_hardware,cloudripper) diff --git a/device-ravenclaw.mk b/device-ravenclaw.mk index eb00889..2fcef30 100644 --- a/device-ravenclaw.mk +++ b/device-ravenclaw.mk @@ -26,6 +26,7 @@ include device/google/gs201/device-shipping-common.mk include device/google/pantah/audio/ravenclaw/audio-tables.mk include hardware/google/pixel/vibrator/cs40l26/device.mk include device/google/gs-common/bcmbt/bluetooth.mk +include device/google/gs-common/touch/syna/syna.mk ifeq ($(filter factory_ravenclaw, $(TARGET_PRODUCT)),) include device/google/gs101/uwb/uwb.mk From 132646c96f341022d796c5f147eae2a76714b291 Mon Sep 17 00:00:00 2001 From: Jinyoung Jeong Date: Fri, 25 Nov 2022 01:33:03 +0000 Subject: [PATCH 2/2] Add system property for transfer in non-QS flow For Panther(P10) / Cheetah(C10) (Pixel 7 / Pixel 7Pro) Bug: 245814974 Bug: 260297446 Test: manual Change-Id: I8c4f6c0da6f80ac5c15a518ddc8e4462aeb562c6 --- device-cheetah.mk | 5 +++++ device-panther.mk | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/device-cheetah.mk b/device-cheetah.mk index 0123e40..40fa289 100644 --- a/device-cheetah.mk +++ b/device-cheetah.mk @@ -348,6 +348,11 @@ PRODUCT_VENDOR_PROPERTIES += \ PRODUCT_PROPERTY_OVERRIDES += \ persist.vendor.audio.cca.enabled=false +# The default value of this variable is false and should only be set to true when +# the device allows users to enable the seamless transfer feature. +PRODUCT_PRODUCT_PROPERTIES += \ + euicc.seamless_transfer_enabled_in_non_qs=true + # Device features PRODUCT_COPY_FILES += \ frameworks/native/data/etc/handheld_core_hardware.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/handheld_core_hardware.xml diff --git a/device-panther.mk b/device-panther.mk index 3f2ec90..76f244f 100644 --- a/device-panther.mk +++ b/device-panther.mk @@ -332,6 +332,11 @@ PRODUCT_VENDOR_PROPERTIES += \ PRODUCT_PROPERTY_OVERRIDES += \ persist.vendor.audio.cca.enabled=false +# The default value of this variable is false and should only be set to true when +# the device allows users to enable the seamless transfer feature. +PRODUCT_PRODUCT_PROPERTIES += \ + euicc.seamless_transfer_enabled_in_non_qs=true + # Device features PRODUCT_COPY_FILES += \ frameworks/native/data/etc/handheld_core_hardware.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/handheld_core_hardware.xml