sdm710-common: Update all common blobs
ADSP, CDSP, charger, CNE, Configstore, Display, DPM, DRM, ESE, Adreno, Vulkan, IMS, Media, Peripheral, Power-off Alarm, QMI, RIL, SCVE, Soter, Time services, TEE, TUI, VPP, Widevine
This commit is contained in:
parent
b097a6be2d
commit
8f32dbc780
456 changed files with 86 additions and 179 deletions
|
@ -203,15 +203,6 @@ dex_import {
|
||||||
product_specific: true,
|
product_specific: true,
|
||||||
}
|
}
|
||||||
|
|
||||||
prebuilt_etc_xml {
|
|
||||||
name: "manifest_android.hardware.drm@1.3-service.clearkey",
|
|
||||||
owner: "lenovo",
|
|
||||||
src: "proprietary/vendor/etc/vintf/manifest/manifest_android.hardware.drm@1.3-service.clearkey.xml",
|
|
||||||
filename_from_src: true,
|
|
||||||
sub_dir: "vintf/manifest",
|
|
||||||
soc_specific: true,
|
|
||||||
}
|
|
||||||
|
|
||||||
prebuilt_etc_xml {
|
prebuilt_etc_xml {
|
||||||
name: "manifest_android.hardware.drm@1.3-service.widevine",
|
name: "manifest_android.hardware.drm@1.3-service.widevine",
|
||||||
owner: "lenovo",
|
owner: "lenovo",
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -15,3 +15,9 @@ service dpmd /system/system_ext/bin/dpmd
|
||||||
socket tcm stream 660 root inet
|
socket tcm stream 660 root inet
|
||||||
socket dpmwrapper stream 660 root inet
|
socket dpmwrapper stream 660 root inet
|
||||||
group system readproc inet radio wakelock oem_2901
|
group system readproc inet radio wakelock oem_2901
|
||||||
|
disabled
|
||||||
|
|
||||||
|
on property:persist.vendor.dpm.feature=*
|
||||||
|
start dpmd
|
||||||
|
on property:persist.vendor.dpm.feature=0
|
||||||
|
stop dpmd
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
proprietary/vendor/app/CneApp/CneApp.apk
vendored
BIN
proprietary/vendor/app/CneApp/CneApp.apk
vendored
Binary file not shown.
BIN
proprietary/vendor/app/IWlanService/IWlanService.apk
vendored
BIN
proprietary/vendor/app/IWlanService/IWlanService.apk
vendored
Binary file not shown.
BIN
proprietary/vendor/app/TimeService/TimeService.apk
vendored
BIN
proprietary/vendor/app/TimeService/TimeService.apk
vendored
Binary file not shown.
BIN
proprietary/vendor/bin/SoterProvisioningTool
vendored
BIN
proprietary/vendor/bin/SoterProvisioningTool
vendored
Binary file not shown.
BIN
proprietary/vendor/bin/adpl
vendored
BIN
proprietary/vendor/bin/adpl
vendored
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
29
proprietary/vendor/bin/init.qti.chg_policy.sh
vendored
Executable file
29
proprietary/vendor/bin/init.qti.chg_policy.sh
vendored
Executable file
|
@ -0,0 +1,29 @@
|
||||||
|
#! /vendor/bin/sh
|
||||||
|
|
||||||
|
#
|
||||||
|
# Copyright (c) 2019 Qualcomm Technologies, Inc.
|
||||||
|
# All Rights Reserved.
|
||||||
|
# Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||||
|
#
|
||||||
|
# Copyright (c) 2019 The Linux Foundation. All rights reserved.
|
||||||
|
#
|
||||||
|
|
||||||
|
export PATH=/vendor/bin
|
||||||
|
|
||||||
|
prefix="/sys/class/"
|
||||||
|
#List of folder for ownership update
|
||||||
|
arr=( "power_supply/battery/" "power_supply/usb/" "power_supply/main/" "power_supply/charge_pump_master/" "power_supply/pc_port/" "power_supply/dc/" "power_supply/bms/" "power_supply/parallel/" "usbpd/usbpd0/" "qc-vdm/" "charge_pump/" "qcom-battery/" )
|
||||||
|
for i in "${arr[@]}"
|
||||||
|
do
|
||||||
|
for j in `ls "$prefix""$i"`
|
||||||
|
do
|
||||||
|
#skip directories to prevent possible security issues.
|
||||||
|
if [[ -d "$prefix""$i""$j" ]]
|
||||||
|
then
|
||||||
|
continue
|
||||||
|
else
|
||||||
|
chown -h system.system "$prefix""$i""$j"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
done
|
||||||
|
setprop persist.vendor.hvdcp_opti.start 1
|
BIN
proprietary/vendor/bin/mm-pp-dpps
vendored
BIN
proprietary/vendor/bin/mm-pp-dpps
vendored
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue