Applying new IBroadcastRadio AIDL
Update Sepolicy for AIDL broadcast radio HAL. Ignore fuzzer default AIDL implementation for now. Bug: 170336130 Test: m -j Change-Id: Ie55c08c6a721de1f8dc40acc81de68565f99f7d7
This commit is contained in:
parent
5043c02262
commit
52546635b2
7 changed files with 11 additions and 0 deletions
|
@ -29,6 +29,8 @@ var (
|
|||
"android.hardware.biometrics.fingerprint.IFingerprint/default": []string{},
|
||||
"android.hardware.biometrics.fingerprint.IFingerprint/virtual": []string{},
|
||||
"android.hardware.bluetooth.audio.IBluetoothAudioProviderFactory/default": []string{},
|
||||
"android.hardware.broadcastradio.IBroadcastRadio/amfm": []string{},
|
||||
"android.hardware.broadcastradio.IBroadcastRadio/dab": []string{},
|
||||
"android.hardware.camera.provider.ICameraProvider/internal/0": []string{},
|
||||
"android.hardware.contexthub.IContextHub/default": []string{},
|
||||
"android.hardware.drm.IDrmFactory/clearkey": []string{},
|
||||
|
|
|
@ -22,4 +22,5 @@
|
|||
virtual_face_hal_prop
|
||||
virtual_fingerprint_hal_prop
|
||||
hal_gatekeeper_service
|
||||
hal_broadcastradio_service
|
||||
))
|
||||
|
|
|
@ -11,6 +11,8 @@ android.hardware.biometrics.face.IFace/default u:object_r:
|
|||
android.hardware.biometrics.fingerprint.IFingerprint/default u:object_r:hal_fingerprint_service:s0
|
||||
android.hardware.biometrics.fingerprint.IFingerprint/virtual u:object_r:hal_fingerprint_service:s0
|
||||
android.hardware.bluetooth.audio.IBluetoothAudioProviderFactory/default u:object_r:hal_audio_service:s0
|
||||
android.hardware.broadcastradio.IBroadcastRadio/amfm u:object_r:hal_broadcastradio_service:s0
|
||||
android.hardware.broadcastradio.IBroadcastRadio/dab u:object_r:hal_broadcastradio_service:s0
|
||||
# The instance here is internal/0 following naming convention for ICameraProvider.
|
||||
# It advertises internal camera devices.
|
||||
android.hardware.camera.provider.ICameraProvider/internal/0 u:object_r:hal_camera_service:s0
|
||||
|
|
|
@ -78,6 +78,7 @@ allow dumpstate {
|
|||
hal_audio_server
|
||||
hal_audiocontrol_server
|
||||
hal_bluetooth_server
|
||||
hal_broadcastradio_server
|
||||
hal_camera_server
|
||||
hal_codec2_server
|
||||
hal_drm_server
|
||||
|
|
|
@ -2,3 +2,6 @@ binder_call(hal_broadcastradio_client, hal_broadcastradio_server)
|
|||
binder_call(hal_broadcastradio_server, hal_broadcastradio_client)
|
||||
|
||||
hal_attribute_hwservice(hal_broadcastradio, hal_broadcastradio_hwservice)
|
||||
hal_attribute_service(hal_broadcastradio, hal_broadcastradio_service)
|
||||
|
||||
binder_call(hal_broadcastradio_server, servicemanager)
|
||||
|
|
|
@ -270,6 +270,7 @@ type hal_audio_service, protected_service, hal_service_type, service_manager_typ
|
|||
type hal_audiocontrol_service, hal_service_type, service_manager_type;
|
||||
type hal_authsecret_service, protected_service, hal_service_type, service_manager_type;
|
||||
type hal_bootctl_service, protected_service, hal_service_type, service_manager_type;
|
||||
type hal_broadcastradio_service, protected_service, hal_service_type, service_manager_type;
|
||||
type hal_camera_service, protected_service, hal_service_type, service_manager_type;
|
||||
type hal_contexthub_service, protected_service, hal_service_type, service_manager_type;
|
||||
type hal_dice_service, protected_service, hal_service_type, service_manager_type;
|
||||
|
|
1
vendor/file_contexts
vendored
1
vendor/file_contexts
vendored
|
@ -23,6 +23,7 @@
|
|||
/(vendor|system/vendor)/bin/hw/android\.hardware\.boot@1\.[0-9]+-service u:object_r:hal_bootctl_default_exec:s0
|
||||
/(vendor|system/vendor)/bin/hw/android\.hardware\.boot-service.default u:object_r:hal_bootctl_default_exec:s0
|
||||
/(vendor|system/vendor)/bin/hw/android\.hardware\.broadcastradio@\d+\.\d+-service u:object_r:hal_broadcastradio_default_exec:s0
|
||||
/(vendor|system/vendor)/bin/hw/android\.hardware\.broadcastradio-service.default u:object_r:hal_broadcastradio_default_exec:s0
|
||||
/(vendor|system/vendor)/bin/hw/android\.hardware\.camera\.provider(@2\.[0-9]+|-V1)-service_64 u:object_r:hal_camera_default_exec:s0
|
||||
/(vendor|system/vendor)/bin/hw/android\.hardware\.camera\.provider(@2\.[0-9]+|-V1)-service u:object_r:hal_camera_default_exec:s0
|
||||
/(vendor|system/vendor)/bin/hw/android\.hardware\.camera\.provider(@2\.[0-9]+|-V1)-service-lazy_64 u:object_r:hal_camera_default_exec:s0
|
||||
|
|
Loading…
Reference in a new issue