device_phh_treble/rw-system.sh

477 lines
19 KiB
Bash
Raw Normal View History

#!/system/bin/sh
#Uncomment me to output sh -x of this script to /cache/phh/logs
#if [ -z "$debug" ];then
# mkdir -p /cache/phh
# debug=1 exec sh -x "$(readlink -f -- "$0")" > /cache/phh/logs 2>&1
#fi
vndk="$(getprop persist.sys.vndk)"
[ -z "$vndk" ] && vndk="$(getprop ro.vndk.version |grep -oE '^[0-9]+')"
if [ "$vndk" = 26 ];then
resetprop ro.vndk.version 26
fi
setprop sys.usb.ffs.aio_compat true
2019-09-12 19:21:48 +00:00
setprop persist.adb.nonblocking_ffs false
2018-05-14 11:34:52 +00:00
fixSPL() {
2019-03-04 21:01:39 +00:00
if [ "$(getprop ro.product.cpu.abi)" = "armeabi-v7a" ]; then
setprop ro.keymaster.mod 'AOSP on ARM32'
else
2019-03-04 21:01:39 +00:00
setprop ro.keymaster.mod 'AOSP on ARM64'
fi
2019-03-04 21:01:39 +00:00
img="$(find /dev/block -type l -name kernel"$(getprop ro.boot.slot_suffix)" | grep by-name | head -n 1)"
[ -z "$img" ] && img="$(find /dev/block -type l -name boot"$(getprop ro.boot.slot_suffix)" | grep by-name | head -n 1)"
if [ -n "$img" ]; then
2018-05-14 11:34:52 +00:00
#Rewrite SPL/Android version if needed
2019-02-28 21:48:04 +00:00
Arelease="$(getSPL "$img" android)"
setprop ro.keymaster.xxx.release "$Arelease"
2019-02-28 21:48:04 +00:00
setprop ro.keymaster.xxx.security_patch "$(getSPL "$img" spl)"
setprop ro.keymaster.brn Android
2018-05-14 11:34:52 +00:00
2019-03-04 21:01:39 +00:00
getprop ro.vendor.build.fingerprint | grep -qiE '^samsung/' && return 0
for f in \
2019-03-04 21:01:39 +00:00
/vendor/lib64/hw/android.hardware.keymaster@3.0-impl-qti.so /vendor/lib/hw/android.hardware.keymaster@3.0-impl-qti.so \
/system/lib64/vndk-26/libsoftkeymasterdevice.so /vendor/bin/teed \
/system/lib64/vndk/libsoftkeymasterdevice.so /system/lib/vndk/libsoftkeymasterdevice.so \
/system/lib/vndk-26/libsoftkeymasterdevice.so \
/system/lib/vndk-27/libsoftkeymasterdevice.so /system/lib64/vndk-27/libsoftkeymasterdevice.so \
2019-09-12 18:57:07 +00:00
/vendor/lib/libkeymaster3device.so /vendor/lib64/libkeymaster3device.so ; do
2019-03-04 20:54:48 +00:00
[ ! -f "$f" ] && continue
2019-03-04 21:01:39 +00:00
# shellcheck disable=SC2010
ctxt="$(ls -lZ "$f" | grep -oE 'u:object_r:[^:]*:s0')"
b="$(echo "$f" | tr / _)"
2018-05-14 11:34:52 +00:00
2019-03-04 20:54:48 +00:00
cp -a "$f" "/mnt/phh/$b"
sed -i \
2019-03-04 21:01:39 +00:00
-e 's/ro.build.version.release/ro.keymaster.xxx.release/g' \
-e 's/ro.build.version.security_patch/ro.keymaster.xxx.security_patch/g' \
-e 's/ro.product.model/ro.keymaster.mod/g' \
-e 's/ro.product.brand/ro.keymaster.brn/g' \
2019-03-04 21:01:39 +00:00
"/mnt/phh/$b"
2019-03-04 20:54:48 +00:00
chcon "$ctxt" "/mnt/phh/$b"
mount -o bind "/mnt/phh/$b" "$f"
2018-05-14 11:34:52 +00:00
done
2019-03-04 21:01:39 +00:00
if [ "$(getprop init.svc.keymaster-3-0)" = "running" ]; then
setprop ctl.restart keymaster-3-0
fi
if [ "$(getprop init.svc.teed)" = "running" ]; then
setprop ctl.restart teed
fi
2018-05-14 11:34:52 +00:00
fi
}
changeKeylayout() {
cp -a /system/usr/keylayout /mnt/phh/keylayout
changed=false
if grep -q vendor.huawei.hardware.biometrics.fingerprint /vendor/etc/vintf/manifest.xml; then
changed=true
cp /system/phh/huawei/fingerprint.kl /mnt/phh/keylayout/fingerprint.kl
chmod 0644 /mnt/phh/keylayout/fingerprint.kl
fi
2019-03-04 21:01:39 +00:00
if getprop ro.vendor.build.fingerprint |
grep -qE -e "^samsung"; then
changed=true
cp /system/phh/samsung-gpio_keys.kl /mnt/phh/keylayout/gpio_keys.kl
cp /system/phh/samsung-sec_touchscreen.kl /mnt/phh/keylayout/sec_touchscreen.kl
chmod 0644 /mnt/phh/keylayout/gpio_keys.kl /mnt/phh/keylayout/sec_touchscreen.kl
fi
2019-03-04 21:01:39 +00:00
if getprop ro.vendor.build.fingerprint | grep -iq \
2018-12-28 15:33:23 +00:00
-e xiaomi/polaris -e xiaomi/sirius -e xiaomi/dipper \
-e xiaomi/wayne -e xiaomi/jasmine -e xiaomi/jasmine_sprout \
2019-01-15 19:24:21 +00:00
-e xiaomi/platina -e iaomi/perseus -e xiaomi/ysl \
2019-05-06 13:53:00 +00:00
-e xiaomi/nitrogen -e xiaomi/daisy -e xiaomi/sakura \
-e xiaomi/whyred -e xiaomi/tulip; then
if [ ! -f /mnt/phh/keylayout/uinput-goodix.kl ]; then
cp /system/phh/empty /mnt/phh/keylayout/uinput-goodix.kl
chmod 0644 /mnt/phh/keylayout/uinput-goodix.kl
changed=true
fi
if [ ! -f /mnt/phh/keylayout/uinput-fpc.kl ]; then
cp /system/phh/empty /mnt/phh/keylayout/uinput-fpc.kl
chmod 0644 /mnt/phh/keylayout/uinput-fpc.kl
changed=true
fi
fi
2019-03-04 21:01:39 +00:00
if getprop ro.vendor.build.fingerprint | grep -qi oneplus/oneplus6/oneplus6; then
2018-09-09 22:32:11 +00:00
cp /system/phh/oneplus6-synaptics_s3320.kl /mnt/phh/keylayout/synaptics_s3320.kl
chmod 0644 /mnt/phh/keylayout/synaptics_s3320.kl
changed=true
fi
2019-03-20 22:56:24 +00:00
if getprop ro.vendor.build.fingerprint | grep -iq -e iaomi/perseus -e iaomi/cepheus; then
cp /system/phh/mimix3-gpio-keys.kl /mnt/phh/keylayout/gpio-keys.kl
chmod 0644 /mnt/phh/keylayout/gpio-keys.kl
changed=true
fi
2019-03-04 21:01:39 +00:00
if getprop ro.vendor.build.fingerprint | grep -iq -E -e '^Sony/G834'; then
cp /system/phh/sony-gpio-keys.kl /mnt/phh/keylayout/gpio-keys.kl
chmod 0644 /mnt/phh/keylayout/gpio-keys.kl
changed=true
fi
2019-10-26 19:05:56 +00:00
if getprop ro.vendor.build.fingerprint |grep -iq -E -e '^Nokia/Panther';then
cp /system/phh/nokia-soc_gpio_keys.kl /mnt/phh/keylayout/soc_gpio_keys.kl
chmod 0644 /mnt/phh/keylayout/soc_gpio_keys.kl
changed=true
fi
2019-11-04 21:56:22 +00:00
if getprop ro.vendor.build.fingerprint |grep -iq -E -e '^Lenovo/' && [ -f /sys/devices/virtual/touch/tp_dev/gesture_on ];then
2019-11-01 17:30:18 +00:00
cp /system/phh/lenovo-synaptics_dsx.kl /mnt/phh/keylayout/synaptics_dsx.kl
chmod 0644 /mnt/phh/keylayout/synaptics_dsx.kl
changed=true
fi
2019-03-04 21:01:39 +00:00
if [ "$changed" = true ]; then
mount -o bind /mnt/phh/keylayout /system/usr/keylayout
restorecon -R /system/usr/keylayout
fi
}
2019-03-04 21:01:39 +00:00
if mount -o remount,rw /system; then
resize2fs "$(grep ' /system ' /proc/mounts | cut -d ' ' -f 1)" || true
elif mount -o remount,rw /; then
major="$(stat -c '%D' /.|sed -E 's/^([0-9a-f]+)([0-9a-f]{2})$/\1/g')"
minor="$(stat -c '%D' /.|sed -E 's/^([0-9a-f]+)([0-9a-f]{2})$/\2/g')"
mknod /dev/tmp-phh b $((0x$major)) $((0x$minor))
2019-03-04 21:01:39 +00:00
resize2fs /dev/root || true
resize2fs /dev/tmp-phh || true
fi
2018-05-19 20:07:12 +00:00
mount -o remount,ro /system || true
mount -o remount,ro / || true
mkdir -p /mnt/phh/
mount -t tmpfs -o rw,nodev,relatime,mode=755,gid=0 none /mnt/phh || true
mkdir /mnt/phh/empty_dir
2018-05-14 11:34:52 +00:00
fixSPL
changeKeylayout
mount /system/phh/empty /vendor/bin/vendor.samsung.security.proca@1.0-service || true
2019-03-04 21:01:39 +00:00
if grep vendor.huawei.hardware.biometrics.fingerprint /vendor/manifest.xml; then
2018-04-30 11:56:06 +00:00
mount -o bind system/phh/huawei/fingerprint.kl /vendor/usr/keylayout/fingerprint.kl
fi
2018-05-14 11:34:52 +00:00
2019-03-04 21:01:39 +00:00
if ! grep android.hardware.biometrics.fingerprint /vendor/manifest.xml && ! grep android.hardware.biometrics.fingerprint /vendor/etc/vintf/manifest.xml; then
mount -o bind system/phh/empty /system/etc/permissions/android.hardware.fingerprint.xml
fi
if ! grep android.hardware.bluetooth /vendor/manifest.xml && ! grep android.hardware.bluetooth /vendor/etc/vintf/manifest.xml; then
mount -o bind system/phh/empty /system/etc/permissions/android.hardware.bluetooth.xml
mount -o bind system/phh/empty /system/etc/permissions/android.hardware.bluetooth_le.xml
fi
2019-03-04 21:01:39 +00:00
if getprop ro.hardware | grep -qF qcom && [ -f /sys/class/backlight/panel0-backlight/max_brightness ] &&
grep -qvE '^255$' /sys/class/backlight/panel0-backlight/max_brightness; then
2019-02-28 21:48:04 +00:00
setprop persist.sys.qcom-brightness "$(cat /sys/class/backlight/panel0-backlight/max_brightness)"
fi
#Sony don't use Qualcomm HAL, so they don't have their mess
2019-03-04 21:01:39 +00:00
if getprop ro.vendor.build.fingerprint | grep -qE 'Sony/'; then
setprop persist.sys.qcom-brightness -1
fi
2019-03-04 21:01:39 +00:00
if getprop ro.vendor.build.fingerprint | grep -qi oneplus/oneplus6/oneplus6; then
resize2fs /dev/block/platform/soc/1d84000.ufshc/by-name/userdata
fi
2019-03-04 21:01:39 +00:00
if getprop ro.vendor.build.fingerprint | grep -q full_k50v1_64 || getprop ro.hardware | grep -q mt6580; then
setprop persist.sys.overlay.nightmode false
fi
2018-07-01 21:06:11 +00:00
2019-03-04 21:01:39 +00:00
if getprop ro.wlan.mtk.wifi.5g | grep -q 1; then
setprop persist.sys.overlay.wifi5g true
2018-07-01 21:06:11 +00:00
fi
2019-03-04 21:01:39 +00:00
if grep -qF 'mkdir /data/.fps 0770 system fingerp' vendor/etc/init/hw/init.mmi.rc; then
mkdir -p /data/.fps
chmod 0770 /data/.fps
chown system:9015 /data/.fps
chown system:9015 /sys/devices/soc/soc:fpc_fpc1020/irq
chown system:9015 /sys/devices/soc/soc:fpc_fpc1020/irq_cnt
fi
2018-08-27 08:25:27 +00:00
2019-03-04 21:01:39 +00:00
if getprop ro.vendor.build.fingerprint | grep -q -i \
2018-12-28 15:33:23 +00:00
-e xiaomi/clover -e xiaomi/wayne -e xiaomi/sakura \
-e xiaomi/nitrogen -e xiaomi/whyred -e xiaomi/platina \
2019-11-20 22:53:12 +00:00
-e xiaomi/ysl -e nubia/nx60 -e nubia/nx61 -e xiaomi/tulip \
2019-12-02 21:46:39 +00:00
-e xiaomi/lavender -e xiaomi/olivelite -e xiaomi/pine; then
2019-02-28 21:48:04 +00:00
setprop persist.sys.qcom-brightness "$(cat /sys/class/leds/lcd-backlight/max_brightness)"
2018-08-29 14:34:14 +00:00
fi
if getprop ro.vendor.product.device |grep -iq -e RMX1801 -e RMX1803 -e RMX1807;then
2019-03-20 22:56:35 +00:00
setprop persist.sys.qcom-brightness "$(cat /sys/class/leds/lcd-backlight/max_brightness)"
fi
2019-03-04 21:01:39 +00:00
if getprop ro.vendor.build.fingerprint | grep -iq \
-e Xiaomi/beryllium/beryllium -e Xiaomi/sirius/sirius \
-e Xiaomi/dipper/dipper -e Xiaomi/ursa/ursa -e Xiaomi/polaris/polaris \
-e motorola/ali/ali -e iaomi/perseus/perseus -e iaomi/platina/platina \
-e iaomi/equuleus/equuleus -e motorola/nora -e xiaomi/nitrogen \
2019-05-18 10:04:35 +00:00
-e motorola/hannah -e motorola/james -e motorola/pettyl -e iaomi/cepheus \
2019-11-11 17:20:21 +00:00
-e iaomi/grus -e xiaomi/cereus -e iaomi/raphael -e iaomi/davinci \
-e iaomi/ginkgo;then
mount -o bind /mnt/phh/empty_dir /vendor/lib64/soundfx
mount -o bind /mnt/phh/empty_dir /vendor/lib/soundfx
setprop ro.audio.ignore_effects true
fi
2019-03-04 21:01:39 +00:00
if [ "$(getprop ro.vendor.product.manufacturer)" = "motorola" ] || [ "$(getprop ro.product.vendor.manufacturer)" = "motorola" ]; then
2019-05-05 17:45:48 +00:00
if getprop ro.vendor.product.device | grep -q -e nora -e ali -e hannah -e evert -e jeter -e deen -e james -e pettyl -e jater; then
2019-03-04 21:01:39 +00:00
if [ "$vndk" -ge 28 ]; then
2019-02-28 21:48:04 +00:00
f="/vendor/lib/libeffects.so"
# shellcheck disable=SC2010
2019-03-04 21:01:39 +00:00
ctxt="$(ls -lZ $f | grep -oE 'u:object_r:[^:]*:s0')"
b="$(echo "$f" | tr / _)"
2019-02-28 21:48:04 +00:00
cp -a $f "/mnt/phh/$b"
sed -i \
's/%zu errors during loading of configuration: %s/%zu errors during loading of configuration: ss/g' \
"/mnt/phh/$b"
chcon "$ctxt" "/mnt/phh/$b"
mount -o bind "/mnt/phh/$b" $f
else
mount -o bind /mnt/phh/empty_dir /vendor/lib64/soundfx
mount -o bind /mnt/phh/empty_dir /vendor/lib/soundfx
fi
2019-01-04 00:10:55 +00:00
fi
fi
2019-03-04 21:01:39 +00:00
if getprop ro.vendor.build.fingerprint | grep -q -i -e xiaomi/wayne -e xiaomi/jasmine; then
setprop persist.imx376_sunny.low.lux 310
setprop persist.imx376_sunny.light.lux 280
setprop persist.imx376_ofilm.low.lux 310
setprop persist.imx376_ofilm.light.lux 280
echo "none" > /sys/class/leds/led:torch_2/trigger
fi
2019-03-04 21:01:39 +00:00
for f in /vendor/lib/mtk-ril.so /vendor/lib64/mtk-ril.so /vendor/lib/libmtk-ril.so /vendor/lib64/libmtk-ril.so; do
[ ! -f $f ] && continue
2019-03-04 20:54:48 +00:00
# shellcheck disable=SC2010
2019-03-04 21:01:39 +00:00
ctxt="$(ls -lZ "$f" | grep -oE 'u:object_r:[^:]*:s0')"
b="$(echo "$f" | tr / _)"
2019-03-04 20:54:48 +00:00
cp -a "$f" "/mnt/phh/$b"
sed -i \
-e 's/AT+EAIC=2/AT+EAIC=3/g' \
2019-03-04 20:54:48 +00:00
"/mnt/phh/$b"
chcon "$ctxt" "/mnt/phh/$b"
mount -o bind "/mnt/phh/$b" "$f"
setprop persist.sys.phh.radio.force_cognitive true
2019-03-31 15:37:13 +00:00
setprop persist.sys.radio.ussd.fix true
done
2018-08-27 08:25:27 +00:00
mount -o bind /system/phh/empty /vendor/overlay/SysuiDarkTheme/SysuiDarkTheme.apk || true
mount -o bind /system/phh/empty /vendor/overlay/SysuiDarkTheme/SysuiDarkThemeOverlay.apk || true
2019-03-04 21:01:39 +00:00
if grep -qF 'PowerVR Rogue GE8100' /vendor/lib/egl/GLESv1_CM_mtk.so ||
grep -qF 'PowerVR Rogue' /vendor/lib/egl/libGLESv1_CM_mtk.so ||
( (getprop ro.product.board; getprop ro.board.platform) | grep -qiE -e msm8917 -e msm8937 -e msm8940); then
2018-12-03 21:40:34 +00:00
2019-03-04 21:01:39 +00:00
setprop debug.hwui.renderer opengl
setprop ro.skia.ignore_swizzle true
fi
#If we have both Samsung and AOSP power hal, take Samsung's
if [ -f /vendor/bin/hw/vendor.samsung.hardware.miscpower@1.0-service ] && [ "$vndk" -lt 28 ]; then
2019-03-04 21:01:39 +00:00
mount -o bind /system/phh/empty /vendor/bin/hw/android.hardware.power@1.0-service
fi
2019-03-04 21:01:39 +00:00
if [ "$vndk" = 27 ] || [ "$vndk" = 26 ]; then
mount -o bind /system/phh/libnfc-nci-oreo.conf /system/etc/libnfc-nci.conf
fi
2019-03-04 21:01:39 +00:00
if busybox_phh unzip -p /vendor/app/ims/ims.apk classes.dex | grep -qF -e Landroid/telephony/ims/feature/MmTelFeature -e Landroid/telephony/ims/feature/MMTelFeature; then
mount -o bind /system/phh/empty /vendor/app/ims/ims.apk
fi
2019-03-04 21:01:39 +00:00
if getprop ro.hardware | grep -qF samsungexynos; then
setprop debug.sf.latch_unsignaled 1
fi
2019-03-04 21:01:39 +00:00
if getprop ro.product.model | grep -qF ANE; then
setprop debug.sf.latch_unsignaled 1
fi
2019-03-04 21:01:39 +00:00
if getprop ro.vendor.build.fingerprint | grep -iq -E -e 'huawei|honor' || getprop persist.sys.overlay.huawei | grep -iq -E -e 'true'; then
p=/product/etc/nfc/libnfc_nxp_*_*.conf
mount -o bind "$p" /system/etc/libnfc-nxp.conf ||
mount -o bind /product/etc/libnfc-nxp.conf /system/etc/libnfc-nxp.conf || true
2019-03-04 21:01:39 +00:00
p=/product/etc/nfc/libnfc_brcm_*_*.conf
mount -o bind "$p" /system/etc/libnfc-brcm.conf ||
mount -o bind /product/etc/libnfc-nxp.conf /system/etc/libnfc-nxp.conf || true
2019-03-04 21:01:39 +00:00
mount -o bind /system/phh/libnfc-nci-huawei.conf /system/etc/libnfc-nci.conf
fi
if getprop ro.vendor.build.fingerprint | grep -qE -e ".*(crown|star)[q2]*lte.*" -e ".*(SC-0[23]K|SCV3[89]).*" && [ "$vndk" -lt 28 ]; then
2019-03-04 21:01:39 +00:00
for f in /vendor/lib/libfloatingfeature.so /vendor/lib64/libfloatingfeature.so; do
[ ! -f "$f" ] && continue
# shellcheck disable=SC2010
ctxt="$(ls -lZ "$f" | grep -oE 'u:object_r:[^:]*:s0')"
b="$(echo "$f" | tr / _)"
cp -a "$f" "/mnt/phh/$b"
sed -i \
-e 's;/system/etc/floating_feature.xml;/system/ph/sam-9810-flo_feat.xml;g' \
"/mnt/phh/$b"
chcon "$ctxt" "/mnt/phh/$b"
mount -o bind "/mnt/phh/$b" "$f"
2019-05-03 21:47:14 +00:00
setprop ro.audio.monitorRotation true
2019-03-04 21:01:39 +00:00
done
fi
2019-05-03 21:47:14 +00:00
# This matches both Razer Phone 1 & 2
if getprop ro.vendor.build.fingerprint |grep -qE razer/cheryl;then
setprop ro.audio.monitorRotation true
fi
2019-03-04 21:01:39 +00:00
if getprop ro.vendor.build.fingerprint | grep -qiE '^samsung'; then
if getprop ro.hardware | grep -q qcom; then
setprop persist.sys.overlay.devinputjack false
fi
2019-03-04 21:01:39 +00:00
if getprop ro.hardware | grep -q -e samsungexynos7870 -e qcom; then
if [ "$vndk" -le 27 ]; then
setprop persist.sys.phh.sdk_override /vendor/bin/hw/rild=27
fi
fi
2019-02-05 23:52:54 +00:00
fi
if getprop ro.vendor.build.fingerprint | grep -qE '^xiaomi/(daisy|wayne)/(daisy|wayne).*'; then
2019-03-04 21:01:39 +00:00
# Fix camera on DND, ugly workaround but meh
setprop audio.camerasound.force true
fi
mount -o bind /mnt/phh/empty_dir /vendor/etc/audio || true
for f in /vendor/lib{,64}/hw/com.qti.chi.override.so;do
[ ! -f $f ] && continue
# shellcheck disable=SC2010
ctxt="$(ls -lZ "$f" | grep -oE 'u:object_r:[^:]*:s0')"
b="$(echo "$f" | tr / _)"
cp -a "$f" "/mnt/phh/$b"
sed -i \
-e 's/ro.product.manufacturer/sys.phh.xx.manufacturer/g' \
"/mnt/phh/$b"
chcon "$ctxt" "/mnt/phh/$b"
mount -o bind "/mnt/phh/$b" "$f"
setprop sys.phh.xx.manufacturer "$(getprop ro.product.vendor.manufacturer)"
done
if [ -n "$(getprop ro.boot.product.hardware.sku)" ] && [ -z "$(getprop ro.hw.oemName)" ];then
setprop ro.hw.oemName "$(getprop ro.boot.product.hardware.sku)"
fi
if getprop ro.vendor.build.fingerprint | grep -qiE '^samsung/' && [ "$vndk" -ge 28 ];then
setprop persist.sys.phh.samsung_fingerprint 0
#obviously broken perms
if [ "$(stat -c '%A' /sys/class/sec/tsp/ear_detect_enable)" == "-rw-rw-r--" ] &&
[ "$(stat -c '%U' /sys/class/sec/tsp/ear_detect_enable)" == "root" ] &&
[ "$(stat -c '%G' /sys/class/sec/tsp/ear_detect_enable)" == "root" ];then
chcon u:object_r:sysfs_ss_writable:s0 /sys/class/sec/tsp/ear_detect_enable
chown system /sys/class/sec/tsp/ear_detect_enable
2019-08-14 21:35:36 +00:00
chcon u:object_r:sysfs_ss_writable:s0 /sys/class/sec/tsp/cmd{,_list,_result,_status}
chown system /sys/class/sec/tsp/cmd{,_list,_result,_status}
2019-08-21 20:00:44 +00:00
chown system /sys/class/power_supply/battery/wc_tx_en
chcon u:object_r:sysfs_app_writable:s0 /sys/class/power_supply/battery/wc_tx_en
fi
if [ "$(stat -c '%U' /sys/class/sec/tsp/input/enabled)" == "root" ] &&
[ "$(stat -c '%G' /sys/class/sec/tsp/input/enabled)" == "root" ];then
chown system:system /sys/class/sec/tsp/input/enabled
chcon u:object_r:sysfs_ss_writable:s0 /sys/class/sec/tsp/input/enabled
setprop ctl.restart sec-miscpower-1-0
fi
fi
if [ -f /system/phh/secure ];then
copyprop() {
p="$(getprop "$2")"
if [ "$p" ]; then
resetprop "$1" "$(getprop "$2")"
fi
}
copyprop ro.build.device ro.vendor.build.device
copyprop ro.bootimage.build.fingerprint ro.vendor.build.fingerprint
copyprop ro.build.fingerprint ro.vendor.build.fingerprint
copyprop ro.build.device ro.vendor.product.device
copyprop ro.product.device ro.vendor.product.device
copyprop ro.product.device ro.product.vendor.device
copyprop ro.product.name ro.vendor.product.name
copyprop ro.product.name ro.product.vendor.device
copyprop ro.product.brand ro.vendor.product.brand
copyprop ro.product.model ro.vendor.product.model
copyprop ro.product.model ro.product.vendor.model
copyprop ro.build.product ro.vendor.product.model
copyprop ro.build.product ro.product.vendor.model
copyprop ro.product.manufacturer ro.vendor.product.manufacturer
copyprop ro.product.manufacturer ro.product.vendor.manufacturer
2019-08-21 22:45:39 +00:00
copyprop ro.build.version.security_patch ro.keymaster.xxx.security_patch
copyprop ro.build.version.security_patch ro.vendor.build.security_patch
resetprop ro.build.tags release-keys
resetprop ro.boot.vbmeta.device_state locked
resetprop ro.boot.verifiedbootstate green
resetprop ro.boot.flash.locked 1
resetprop ro.boot.veritymode enforcing
resetprop ro.boot.warranty_bit 0
resetprop ro.warranty_bit 0
resetprop ro.debuggable 0
resetprop ro.secure 1
resetprop ro.build.type user
resetprop ro.build.selinux 0
resetprop ro.adb.secure 1
setprop ctl.restart adbd
fi
for abi in "" 64;do
f=/vendor/lib$abi/libstagefright_foundation.so
if [ -f "$f" ];then
for vndk in 26 27 28;do
mount "$f" /system/lib$abi/vndk-$vndk/libstagefright_foundation.so
done
fi
done
setprop ro.product.first_api_level "$vndk"
2019-11-30 19:38:41 +00:00
if getprop ro.boot.boot_devices |grep -v , |grep -qE .;then
ln -s /dev/block/platform/$(getprop ro.boot.boot_devices) /dev/block/bootdevice
fi
if [ -c /dev/dsm ];then
chown system:system /dev/dsm
chmod 0660 /dev/dsm
mkdir -p /data/sec_storage_data
chown system:system /data/sec_storage_data
chcon u:object_r:teecd_data_file_system:s0 /data/sec_storage_data
mount /data/sec_storage_data /sec_storage
fi
2019-12-01 16:02:34 +00:00
#Try to detect DT2W
for ev in $(cd /sys/class/input;echo event*);do
if [ -f "/sys/class/input/$ev/device/device/gesture_mask" ];then
setprop persist.sys.phh.dt2w_evnode /dev/input/$ev
fi
done