Merge "Add new vibrator control service to system_server" into main
This commit is contained in:
commit
70b7a8c76d
5 changed files with 7 additions and 0 deletions
|
@ -459,6 +459,7 @@ var (
|
|||
"uwb": EXCEPTION_NO_FUZZER,
|
||||
"vcn_management": EXCEPTION_NO_FUZZER,
|
||||
"vibrator": EXCEPTION_NO_FUZZER,
|
||||
"vibrator_control": EXCEPTION_NO_FUZZER,
|
||||
"vibrator_manager": EXCEPTION_NO_FUZZER,
|
||||
"virtualdevice": EXCEPTION_NO_FUZZER,
|
||||
"virtualdevice_native": EXCEPTION_NO_FUZZER,
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
ota_build_prop
|
||||
snapuserd_log_data_file
|
||||
hal_authgraph_service
|
||||
vibrator_control_service
|
||||
hal_codec2_service
|
||||
hal_threadnetwork_service
|
||||
virtual_camera_service
|
||||
|
|
|
@ -435,6 +435,7 @@ user u:object_r:user_service:s0
|
|||
uwb u:object_r:uwb_service:s0
|
||||
vcn_management u:object_r:vcn_management_service:s0
|
||||
vibrator u:object_r:vibrator_service:s0
|
||||
vibrator_control u:object_r:vibrator_control_service:s0
|
||||
vibrator_manager u:object_r:vibrator_manager_service:s0
|
||||
virtualdevice u:object_r:virtual_device_service:s0
|
||||
virtualdevice_native u:object_r:virtual_device_native_service:s0
|
||||
|
|
|
@ -12,3 +12,6 @@ allow hal_vibrator_server dumpstate:fifo_file write;
|
|||
# vibrator sysfs rw access
|
||||
allow hal_vibrator sysfs_vibrator:file rw_file_perms;
|
||||
allow hal_vibrator sysfs_vibrator:dir search;
|
||||
|
||||
# Allow HAL vibrator to control some parameters of a vibration, such as scaling.
|
||||
allow hal_vibrator vibrator_control_service:service_manager find;
|
||||
|
|
|
@ -254,6 +254,7 @@ type usb_service, app_api_service, system_server_service, service_manager_type;
|
|||
type user_service, app_api_service, ephemeral_app_api_service, system_server_service, service_manager_type;
|
||||
type uwb_service, app_api_service, system_server_service, service_manager_type;
|
||||
type vcn_management_service, app_api_service, ephemeral_app_api_service, system_server_service, service_manager_type;
|
||||
type vibrator_control_service, system_server_service, service_manager_type;
|
||||
type vibrator_service, app_api_service, ephemeral_app_api_service, system_server_service, service_manager_type;
|
||||
type vibrator_manager_service, app_api_service, ephemeral_app_api_service, system_server_service, service_manager_type;
|
||||
type virtual_device_service, app_api_service, system_server_service, service_manager_type;
|
||||
|
|
Loading…
Reference in a new issue