berlna: rootdir: Add vendor prefix to fingerprint services

Signed-off-by: electimon <electimon@gmail.com>
Change-Id: I33d9bbd865d2224bca841a1515c3332f4c8efcf6
This commit is contained in:
electimon
2022-11-04 21:29:13 +00:00
committed by Andrew Hexen
parent e129a16ca8
commit 181533e99c
4 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
service goodix_hal /vendor/bin/hw/android.hardware.biometrics.fingerprint@2.1-service.berlna
service vendor.goodix_hal /vendor/bin/hw/android.hardware.biometrics.fingerprint@2.1-service.berlna
# "class hal" causes a race condition on some devices due to files created
# in /data. As a workaround, postpone startup until later in boot once
# /data is mounted.

View File

@@ -45,7 +45,7 @@ function start_fpsensor() {
sleep 0.6
set_permissions
sleep 0.4
start chipone_fp_hal
start vendor.chipone_fp_hal
sleep 1
value=`getprop $prop_fps_status`
if [ $value == "ok" ];
@@ -71,7 +71,7 @@ function start_fpsensor() {
sleep 0.6
set_permissions
sleep 0.4
start goodix_hal
start vendor.goodix_hal
sleep 1
value=`getprop $prop_fps_status`
if [ $value == "ok" ];

View File

@@ -1,4 +1,4 @@
service ets_hal /vendor/bin/hw/android.hardware.biometrics.fingerprint@2.1-service-ets
service vendor.ets_hal /vendor/bin/hw/android.hardware.biometrics.fingerprint@2.1-service-ets
# "class hal" causes a race condition on some devices due to files created
# in /data. As a workaround, postpone startup until later in boot once
# /data is mounted.

View File

@@ -19,4 +19,4 @@ on post-fs-data
on post-fs-data
# service-ets
on property:ro.vendor.hw.fps=false
stop ets_hal
stop vendor.ets_hal