2017-12-27 23:59:00 +00:00
|
|
|
#Huawei devices don't declare fingerprint and telephony hardware feature
|
2018-08-20 08:58:38 +00:00
|
|
|
#TODO: Proper detection
|
2017-12-17 16:46:37 +00:00
|
|
|
PRODUCT_COPY_FILES := \
|
2017-12-27 23:59:00 +00:00
|
|
|
frameworks/native/data/etc/android.hardware.fingerprint.xml:system/etc/permissions/android.hardware.fingerprint.xml \
|
2019-07-17 18:11:18 +00:00
|
|
|
frameworks/native/data/etc/android.hardware.telephony.gsm.xml:system/etc/permissions/android.hardware.telephony.gsm.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.bluetooth.xml:system/etc/permissions/android.hardware.bluetooth.xml \
|
|
|
|
frameworks/native/data/etc/android.hardware.bluetooth_le.xml:system/etc/permissions/android.hardware.bluetooth_le.xml \
|
2017-12-17 16:46:37 +00:00
|
|
|
|
|
|
|
#Use a more decent APN config
|
2017-12-21 12:31:38 +00:00
|
|
|
PRODUCT_COPY_FILES += \
|
2017-12-17 16:46:37 +00:00
|
|
|
device/sample/etc/apns-full-conf.xml:system/etc/apns-conf.xml
|
|
|
|
|
|
|
|
BOARD_PLAT_PRIVATE_SEPOLICY_DIR += device/phh/treble/sepolicy
|
|
|
|
DEVICE_PACKAGE_OVERLAYS += device/phh/treble/overlay
|
|
|
|
|
|
|
|
$(call inherit-product, vendor/hardware_overlay/overlay.mk)
|
2017-12-17 17:12:19 +00:00
|
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk)
|
|
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/aosp_base_telephony.mk)
|
2018-01-27 12:23:31 +00:00
|
|
|
|
|
|
|
#Those overrides are here because Huawei's init read properties
|
|
|
|
#from /system/etc/prop.default, then /vendor/build.prop, then /system/build.prop
|
|
|
|
#So we need to set our props in prop.default
|
|
|
|
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
|
2018-02-12 18:56:28 +00:00
|
|
|
ro.build.version.sdk=$(PLATFORM_SDK_VERSION) \
|
|
|
|
ro.build.version.codename=$(PLATFORM_VERSION_CODENAME) \
|
|
|
|
ro.build.version.all_codenames=$(PLATFORM_VERSION_ALL_CODENAMES) \
|
2018-03-27 21:39:38 +00:00
|
|
|
ro.build.version.release=$(PLATFORM_VERSION) \
|
2018-04-24 20:36:59 +00:00
|
|
|
ro.build.version.security_patch=$(PLATFORM_SECURITY_PATCH) \
|
2018-11-26 21:49:44 +00:00
|
|
|
ro.adb.secure=0 \
|
|
|
|
ro.logd.auditd=true
|
2018-07-15 12:18:35 +00:00
|
|
|
|
|
|
|
#Huawei HiSuite (also other OEM custom programs I guess) it's of no use in AOSP builds
|
|
|
|
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
|
2018-09-26 15:12:32 +00:00
|
|
|
persist.sys.usb.config=adb \
|
|
|
|
ro.cust.cdrom=/dev/null
|
2018-02-14 21:05:41 +00:00
|
|
|
|
|
|
|
#VNDK config files
|
|
|
|
PRODUCT_COPY_FILES += \
|
2018-02-16 21:41:03 +00:00
|
|
|
device/phh/treble/vndk-detect:system/bin/vndk-detect \
|
2018-02-14 21:05:41 +00:00
|
|
|
device/phh/treble/vndk.rc:system/etc/init/vndk.rc \
|
|
|
|
device/phh/treble/ld.config.26.txt:system/etc/ld.config.26.txt \
|
|
|
|
|
2018-03-31 22:21:03 +00:00
|
|
|
#USB Audio
|
|
|
|
PRODUCT_COPY_FILES += \
|
|
|
|
frameworks/av/services/audiopolicy/config/usb_audio_policy_configuration.xml:system/etc/usb_audio_policy_configuration.xml
|
2018-02-20 20:30:42 +00:00
|
|
|
|
|
|
|
# NFC:
|
|
|
|
# Provide default libnfc-nci.conf file for devices that does not have one in
|
|
|
|
# vendor/etc
|
|
|
|
PRODUCT_COPY_FILES += \
|
2019-01-08 13:39:22 +00:00
|
|
|
device/phh/treble/nfc/libnfc-nci.conf:system/phh/libnfc-nci-oreo.conf \
|
2018-12-20 15:29:57 +00:00
|
|
|
device/phh/treble/nfc/libnfc-nci-huawei.conf:system/phh/libnfc-nci-huawei.conf
|
2018-03-04 20:33:55 +00:00
|
|
|
|
2018-06-24 13:46:45 +00:00
|
|
|
# LineageOS build may need this to make NFC work
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
NfcNci
|
|
|
|
|
2018-04-02 22:13:48 +00:00
|
|
|
PRODUCT_COPY_FILES += \
|
2018-04-10 16:33:33 +00:00
|
|
|
device/phh/treble/rw-system.sh:system/bin/rw-system.sh \
|
2020-03-26 01:51:58 +00:00
|
|
|
device/phh/treble/phh-prop-handler.sh:system/bin/phh-prop-handler.sh \
|
2018-04-10 16:33:33 +00:00
|
|
|
device/phh/treble/fixSPL/getSPL.arm:system/bin/getSPL
|
2018-04-02 22:13:48 +00:00
|
|
|
|
2018-05-14 11:36:26 +00:00
|
|
|
PRODUCT_COPY_FILES += \
|
2018-05-14 15:04:27 +00:00
|
|
|
device/phh/treble/empty:system/phh/empty \
|
2018-07-20 13:07:03 +00:00
|
|
|
device/phh/treble/phh-on-boot.sh:system/bin/phh-on-boot.sh
|
2018-05-14 11:36:26 +00:00
|
|
|
|
2018-03-04 20:33:55 +00:00
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
treble-environ-rc
|
2018-05-26 11:30:17 +00:00
|
|
|
|
2018-06-06 13:28:28 +00:00
|
|
|
PRODUCT_PACKAGES += \
|
2018-05-31 09:27:23 +00:00
|
|
|
bootctl \
|
|
|
|
vintf
|
2018-07-23 13:32:31 +00:00
|
|
|
|
2019-01-11 17:53:01 +00:00
|
|
|
# Fix Offline Charging on Huawmeme
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
huawei-charger
|
|
|
|
PRODUCT_COPY_FILES += \
|
|
|
|
$(call find-copy-subdir-files,*,device/phh/treble/huawei_charger/files,system/etc/charger)
|
|
|
|
|
2018-07-23 13:32:31 +00:00
|
|
|
PRODUCT_COPY_FILES += \
|
|
|
|
device/phh/treble/twrp/twrp.rc:system/etc/init/twrp.rc \
|
|
|
|
device/phh/treble/twrp/twrp.sh:system/bin/twrp.sh \
|
2018-07-23 19:37:40 +00:00
|
|
|
device/phh/treble/twrp/busybox-armv7l:system/bin/busybox_phh
|
2018-08-16 15:00:28 +00:00
|
|
|
|
2018-12-09 22:24:26 +00:00
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
simg2img_simple
|
|
|
|
|
2018-08-16 15:29:55 +00:00
|
|
|
ifneq (,$(wildcard external/exfat))
|
2018-08-16 15:00:28 +00:00
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
mkfs.exfat \
|
|
|
|
fsck.exfat
|
|
|
|
endif
|
2018-08-26 22:38:11 +00:00
|
|
|
|
|
|
|
PRODUCT_PACKAGES += \
|
2018-09-09 22:32:11 +00:00
|
|
|
android.hardware.wifi.hostapd-V1.0-java \
|
2018-08-26 22:38:11 +00:00
|
|
|
vendor.huawei.hardware.biometrics.fingerprint-V2.1-java \
|
|
|
|
vendor.huawei.hardware.tp-V1.0-java \
|
|
|
|
vendor.qti.hardware.radio.am-V1.0-java \
|
|
|
|
vendor.qti.qcril.am-V1.0-java \
|
|
|
|
|
2018-08-27 21:23:25 +00:00
|
|
|
PRODUCT_COPY_FILES += \
|
|
|
|
device/phh/treble/interfaces.xml:system/etc/permissions/interfaces.xml
|
2018-09-03 12:58:11 +00:00
|
|
|
|
|
|
|
PRODUCT_COPY_FILES += \
|
|
|
|
device/phh/treble/files/samsung-gpio_keys.kl:system/phh/samsung-gpio_keys.kl \
|
2018-09-09 22:32:11 +00:00
|
|
|
device/phh/treble/files/samsung-sec_touchscreen.kl:system/phh/samsung-sec_touchscreen.kl \
|
|
|
|
device/phh/treble/files/oneplus6-synaptics_s3320.kl:system/phh/oneplus6-synaptics_s3320.kl \
|
2018-10-02 21:56:35 +00:00
|
|
|
device/phh/treble/files/huawei-fingerprint.kl:system/phh/huawei/fingerprint.kl \
|
2018-11-04 17:18:36 +00:00
|
|
|
device/phh/treble/files/samsung-sec_e-pen.idc:system/usr/idc/sec_e-pen.idc \
|
2018-11-06 19:40:56 +00:00
|
|
|
device/phh/treble/files/samsung-9810-floating_feature.xml:system/ph/sam-9810-flo_feat.xml \
|
2019-10-26 19:05:56 +00:00
|
|
|
device/phh/treble/files/mimix3-gpio-keys.kl:system/phh/mimix3-gpio-keys.kl \
|
|
|
|
device/phh/treble/files/nokia-soc_gpio_keys.kl:system/phh/nokia-soc_gpio_keys.kl
|
2018-09-09 22:32:11 +00:00
|
|
|
|
2018-09-18 09:16:19 +00:00
|
|
|
SELINUX_IGNORE_NEVERALLOWS := true
|
2018-10-21 22:11:36 +00:00
|
|
|
|
|
|
|
# Universal NoCutoutOverlay
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
NoCutoutOverlay
|
2018-12-03 20:16:52 +00:00
|
|
|
|
2018-12-03 20:18:28 +00:00
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
lightsctl \
|
|
|
|
uevent
|
|
|
|
|
2018-12-03 20:16:52 +00:00
|
|
|
PRODUCT_COPY_FILES += \
|
|
|
|
device/phh/treble/files/adbd.rc:system/etc/init/adbd.rc
|
2019-02-26 22:14:06 +00:00
|
|
|
|
|
|
|
#MTK incoming SMS fix
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
mtk-sms-fwk-ready
|
2019-03-14 11:59:54 +00:00
|
|
|
|
2019-06-06 06:48:26 +00:00
|
|
|
# Helper to debug Xiaomi motorized camera
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
xiaomi-motor
|
|
|
|
|
2019-03-14 11:59:54 +00:00
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
Stk
|
2019-08-21 22:35:41 +00:00
|
|
|
|
|
|
|
PRODUCT_PACKAGES += \
|
|
|
|
resetprop
|
|
|
|
PRODUCT_COPY_FILES += \
|
|
|
|
device/phh/treble/phh-securize.sh:system/bin/phh-securize.sh \
|
|
|
|
|
2019-10-25 14:29:57 +00:00
|
|
|
# Privapp-permissions whitelist for PhhTrebleApp
|
|
|
|
PRODUCT_COPY_FILES += \
|
|
|
|
device/phh/treble/privapp-permissions-me.phh.treble.app.xml:system/etc/permissions/privapp-permissions-me.phh.treble.app.xml
|