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 http://go/treble-sysprop-compatibility. Test: succeeded building and tested on a sailfish device. Bug: 36796459 Change-Id: I48e6ee0ae3fe401e39efb273256d991fac676357 Signed-off-by: Alberto97 <albertop2197@gmail.com>
This commit is contained in:
committed by
therootlord
parent
c6c3e249ed
commit
d5d0276021
@@ -236,7 +236,7 @@ on boot
|
||||
chmod 0660 /persist/chargeonly/cooldown
|
||||
|
||||
# Pass carrier to wlan
|
||||
service init_wifi /vendor/bin/sh /vendor/bin/wlan_carrier_bin.sh
|
||||
service vendor.init_wifi /vendor/bin/sh /vendor/bin/wlan_carrier_bin.sh
|
||||
class main
|
||||
user root
|
||||
group root
|
||||
@@ -254,8 +254,8 @@ on charger
|
||||
on moto-charger
|
||||
setprop ro.board.platform msm8953
|
||||
trigger firmware_mounts_complete
|
||||
start charge_only_mode
|
||||
start thermal-com
|
||||
start vendor.charge_only_mode
|
||||
start vendor.thermal-com
|
||||
|
||||
on property:ro.boot.dualsim=true
|
||||
setprop persist.radio.multisim.config dsds
|
||||
@@ -266,7 +266,7 @@ on property:ro.boot.dualsim=false
|
||||
setprop ro.telephony.default_network 10
|
||||
|
||||
on property:ro.boot.hwrev=*
|
||||
start mmi-boot-sh
|
||||
start vendor.mmi-boot-sh
|
||||
|
||||
service adspd /vendor/bin/adspd
|
||||
class main
|
||||
@@ -274,24 +274,24 @@ service adspd /vendor/bin/adspd
|
||||
user audio
|
||||
group audio input diag
|
||||
|
||||
service mmi-boot-sh /vendor/bin/sh /vendor/bin/init.mmi.boot.sh
|
||||
service vendor.mmi-boot-sh /vendor/bin/sh /vendor/bin/init.mmi.boot.sh
|
||||
class core
|
||||
user root
|
||||
oneshot
|
||||
disabled
|
||||
|
||||
# Sanders uses qcom sensor service
|
||||
service sensors /vendor/bin/sensors.qcom
|
||||
service vendor.sensors /vendor/bin/sensors.qcom
|
||||
class core
|
||||
user root
|
||||
group root
|
||||
|
||||
service charge_only_mode /vendor/bin/charge_only_mode
|
||||
service vendor.charge_only_mode /vendor/bin/charge_only_mode
|
||||
user root
|
||||
group graphics system input
|
||||
disabled
|
||||
|
||||
service thermal-com /vendor/bin/thermal-engine --minimode
|
||||
service vendor.thermal-com /vendor/bin/thermal-engine --minimode
|
||||
class main
|
||||
user root
|
||||
disabled
|
||||
|
||||
Reference in New Issue
Block a user