Merge pull request #282 from Vgdn1942/android-12.0

Add keylayout and fix broken USB for Blackview BV9500Plus
This commit is contained in:
Pierre-Hugues HUSSON 2021-11-15 08:38:44 +01:00 committed by GitHub
commit 1aece75b52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 1 deletions

View File

@ -131,6 +131,7 @@ PRODUCT_COPY_FILES += \
device/phh/treble/files/zf6-goodixfp.kl:system/phh/zf6-goodixfp.kl \
device/phh/treble/files/zf6-googlekey_input.kl:system/phh/zf6-googlekey_input.kl \
device/phh/treble/files/teracube2e-mtk-kpd.kl:system/phh/teracube2e-mtk-kpd.kl \
device/phh/treble/files/bv9500plus-mtk-kpd.kl:system/phh/bv9500plus-mtk-kpd.kl \
SELINUX_IGNORE_NEVERALLOWS := true

View File

@ -0,0 +1,5 @@
key 114 VOLUME_DOWN
key 115 VOLUME_UP
key 116 POWER
key 249 ASSIST
key 250 CAMERA

View File

@ -60,7 +60,12 @@ if [ "$vndk" = 26 ];then
fi
setprop sys.usb.ffs.aio_compat true
setprop persist.adb.nonblocking_ffs false
if getprop ro.vendor.build.fingerprint | grep -q -i -e Blackview/BV9500Plus;then
setprop persist.adb.nonblocking_ffs true
else
setprop persist.adb.nonblocking_ffs false
fi
fixSPL() {
if [ "$(getprop ro.product.cpu.abi)" = "armeabi-v7a" ]; then
@ -257,6 +262,12 @@ changeKeylayout() {
changed=true
fi
if getprop ro.vendor.build.fingerprint | grep -q -i -e Blackview/BV9500Plus;then
cp /system/phh/bv9500plus-mtk-kpd.kl /mnt/phh/keylayout/mtk-kpd.kl
chmod 0644 /mnt/phh/keylayout/mtk-kpd.kl
changed=true
fi
if [ "$changed" = true ]; then
mount -o bind /mnt/phh/keylayout /system/usr/keylayout
restorecon -R /system/usr/keylayout