-----BEGIN PGP SIGNATURE----- iF0EABECAB0WIQRDQNE1cO+UXoOBCWTorT+BmrEOeAUCZ9i73wAKCRDorT+BmrEO eNAdAJ4iFgX7EK1C2pdsM9xAkM5Xjk7dBwCfch41c+qFXQr6zJJCy4YChJm17gw= =5vJF -----END PGP SIGNATURE----- gpgsig -----BEGIN SSH SIGNATURE----- U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgPpdpjxPACTIhnlvYz0GM4BR7FJ +rYv3jMbfxNKD3JvcAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5 AAAAQBeN6OMa4JXSo0E6+1dGtQsG6agJl9uiIidcCeIkA9m/JKpVY4/gLmgAJcDlUj2DCl /ke0tsHVnYjBoG0cJ+BQA= -----END SSH SIGNATURE----- Merge tag 'aml_tz6_351400020' into staging/lineage-23.0_merge-aml_tz6_351400020 aml_tz6_351400020 (13155446,com.google.android.go.tzdata6,com.google.android.tzdata6) # -----BEGIN PGP SIGNATURE----- # # iF0EABECAB0WIQRDQNE1cO+UXoOBCWTorT+BmrEOeAUCZ9i73wAKCRDorT+BmrEO # eNAdAJ4iFgX7EK1C2pdsM9xAkM5Xjk7dBwCfch41c+qFXQr6zJJCy4YChJm17gw= # =5vJF # -----END PGP SIGNATURE----- # gpg: Signature made Tue Mar 18 02:18:39 2025 EET # gpg: using DSA key 4340D13570EF945E83810964E8AD3F819AB10E78 # gpg: Good signature from "The Android Open Source Project <initial-contribution@android.com>" [ultimate] # By James Huang (2) and others # Via Android (Google) Code Review (12) and others * tag 'aml_tz6_351400020': (26 commits) Remove old unused VINTF manifest file gps: Update GNSS config for KDDI Enable dynamic routing for tmobile_cz and vodafone_cz carriers Enable ambient AOD for certain devices Enable fp screen off unlock feature and turn off by default thermal: Low power shutdown policy bringup Revert^2 "Delete 16kb dev option config from caimito" Revert "Delete 16kb dev option config from caimito" [UWB] Add a new runtime overlay for caiman and komodo on GSI Delete 16kb dev option config from caimito powerhint: Mask hints in AA and DISPLAY_IDLE thermal: Remove bcl related tzones caimito: Clean up dbc and pm properties. thermal: prev_samples_order mismatch fix Fix LE Audio Unicast Allowlist Add IFingerprintDebug and update build config. caimito: Update APMg3 tuning files Revert "powerhint: Disable auto margins" powerhint: Disable auto margins Add support for google_car devices ... Conflicts: fingerprint/ultrasonic_udfps.mk Change-Id: Ifbbdc1ead7a5c49837827f9572df09cc7604779d
47 lines
1.5 KiB
Makefile
47 lines
1.5 KiB
Makefile
#
|
|
# Copyright 2021 The Android Open-Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
PRODUCT_SOONG_NAMESPACES += \
|
|
vendor/qcom/fingerprint/qfp-service
|
|
|
|
PRODUCT_PACKAGES += \
|
|
qfp-daemon
|
|
|
|
PRODUCT_COPY_FILES += \
|
|
frameworks/native/data/etc/android.hardware.fingerprint.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.fingerprint.xml
|
|
|
|
DEVICE_PRODUCT_COMPATIBILITY_MATRIX_FILE += device/google/caimito/fingerprint/device_framework_matrix_product.xml
|
|
|
|
$(call soong_config_set,fp_hal_feature,biometric_suez_support,true)
|
|
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
persist.vendor.qfp.update_vfs_calib=1 \
|
|
persist.vendor.qfp.enable_setprop=0 \
|
|
log.tag.QFP=3
|
|
|
|
ifneq (,$(filter eng, $(TARGET_BUILD_VARIANT)))
|
|
$(call soong_config_set,fp_hal_feature,fingerprint_debug_support,$(RELEASE_PIXEL_AIDL_FINGERPRINT_DEBUG_HAL))
|
|
|
|
PRODUCT_SOONG_NAMESPACES += \
|
|
vendor/qcom/fingerprint/QFPCalibration
|
|
|
|
PRODUCT_PACKAGES += \
|
|
QFPCalibration
|
|
endif
|
|
|
|
ifneq (,$(findstring factory, $(TARGET_PRODUCT)))
|
|
PRODUCT_PACKAGES += QfsFactoryTest
|
|
endif
|