Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6f53db66 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add 'vendor.' prefix to a vendor HAL service name"

parents 0fc542ca 81104ae5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
service audio-hal-2-0 /vendor/bin/hw/android.hardware.audio@2.0-service
service vendor.audio-hal-2-0 /vendor/bin/hw/android.hardware.audio@2.0-service
    class hal
    user audioserver
    # media gid needed for /dev/fm (radio) and for /data/misc/media (tee)
+1 −1
Original line number Diff line number Diff line
service evs-hal-mock /vendor/bin/hw/android.hardware.automotive.evs@1.0-service
service vendor.evs-hal-mock /vendor/bin/hw/android.hardware.automotive.evs@1.0-service
    class hal
    user automotive_evs
    group automotive_evs
+1 −1
Original line number Diff line number Diff line
service vehicle-hal-2.0 /vendor/bin/hw/android.hardware.automotive.vehicle@2.0-service
service vendor.vehicle-hal-2.0 /vendor/bin/hw/android.hardware.automotive.vehicle@2.0-service
    class hal
    user vehicle_network
    group system inet
+1 −1
Original line number Diff line number Diff line
service fps_hal /vendor/bin/hw/android.hardware.biometrics.fingerprint@2.1-service
service vendor.fps_hal /vendor/bin/hw/android.hardware.biometrics.fingerprint@2.1-service
    # "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.
+5 −5
Original line number Diff line number Diff line
service bluetooth-1-0 /vendor/bin/hw/android.hardware.bluetooth@1.0-service
service vendor.bluetooth-1-0 /vendor/bin/hw/android.hardware.bluetooth@1.0-service
    class hal
    user bluetooth
    group bluetooth
    writepid /dev/stune/foreground/tasks

on property:vts.native_server.on=1 && property:ro.build.type=userdebug
    stop bluetooth-1-0
    stop vendor.bluetooth-1-0
on property:vts.native_server.on=1 && property:ro.build.type=eng
    stop bluetooth-1-0
    stop vendor.bluetooth-1-0
on property:vts.native_server.on=0 && property:ro.build.type=userdebug
    start bluetooth-1-0
    start vendor.bluetooth-1-0
on property:vts.native_server.on=0 && property:ro.build.type=eng
    start bluetooth-1-0
    start vendor.bluetooth-1-0
Loading