diff options
author | Jaekyun Seok <jaekyun@google.com> | 2018-08-18 21:13:46 -0400 |
---|---|---|
committer | TingyiChen <tingyi364@gmail.com> | 2019-08-13 11:47:04 +0200 |
commit | f5b13b46cb52d54d3d3583428522fb00af83134d (patch) | |
tree | 8f6dafb46c6533c5dc56f24d948e5dfa20c28ca1 /biometrics | |
parent | 75595b3414fc062586008d3e30dff6093ac71ca9 (diff) |
wayne-common: rootdir: Add 'vendor.' prefix to a vendor HAL service name
* To prevent property name collisions between properties of system and
vendor, 'vendor.' prefix must be added to a vendor HAL service name.
You can see the details in go/treble-sysprop-compatibility documents.
Test: succeeded building and tested on a sailfish device.
Bug: 36796459
Change-Id: I48e6ee0ae3fe401e39efb273256d991fac676357
Diffstat (limited to 'biometrics')
-rw-r--r-- | biometrics/android.hardware.biometrics.fingerprint@2.1-service.xiaomi_wayne.rc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/biometrics/android.hardware.biometrics.fingerprint@2.1-service.xiaomi_wayne.rc b/biometrics/android.hardware.biometrics.fingerprint@2.1-service.xiaomi_wayne.rc index cd91699..d3890ed 100644 --- a/biometrics/android.hardware.biometrics.fingerprint@2.1-service.xiaomi_wayne.rc +++ b/biometrics/android.hardware.biometrics.fingerprint@2.1-service.xiaomi_wayne.rc @@ -11,15 +11,15 @@ on boot chown system system /sys/devices/soc/soc:fpc1020/wakeup_enable chmod 0660 /sys/devices/soc/soc:fpc1020/wakeup_enable -service fps_hal /vendor/bin/hw/android.hardware.biometrics.fingerprint@2.1-service.xiaomi_wayne +service vendor.fps_hal /vendor/bin/hw/android.hardware.biometrics.fingerprint@2.1-service.xiaomi_wayne class late_start user system group system input -service goodix_script /vendor/bin/init.goodix.sh +service vendor.goodix_script /vendor/bin/init.goodix.sh class late_start user system disabled on property:ro.boot.fpsensor=gdx - start goodix_script + start vendor.goodix_script |