diff --git a/private/hwservice_contexts b/private/hwservice_contexts index 35c95ce4c10b3c44213f0db45061ed3dea4d37f0..602391a5e3014c8c186f3ca02dceb86df03187d9 100644 --- a/private/hwservice_contexts +++ b/private/hwservice_contexts @@ -26,6 +26,7 @@ android.hardware.media.omx::IOmx u:object_r:hal_o android.hardware.media.omx::IOmxStore u:object_r:hal_omx_hwservice:s0 android.hardware.memtrack::IMemtrack u:object_r:hal_memtrack_hwservice:s0 android.hardware.nfc::INfc u:object_r:hal_nfc_hwservice:s0 +android.hardware.oemlock::IOemLock u:object_r:hal_oemlock_hwservice:s0 android.hardware.power::IPower u:object_r:hal_power_hwservice:s0 android.hardware.radio.deprecated::IOemHook u:object_r:hal_telephony_hwservice:s0 android.hardware.radio::IRadio u:object_r:hal_telephony_hwservice:s0 diff --git a/public/hal_oemlock.te b/public/hal_oemlock.te index dcbb964fb47b04ee4a93e3c37d5ec98cc47c5316..3fb5a18713647337e79ab91ca7a05645f113f241 100644 --- a/public/hal_oemlock.te +++ b/public/hal_oemlock.te @@ -1,2 +1,5 @@ # HwBinder IPC from client to server -# binder_call(hal_oemlock_client, hal_oemlock_server) +binder_call(hal_oemlock_client, hal_oemlock_server) + +add_hwservice(hal_oemlock_server, hal_oemlock_hwservice) +allow hal_oemlock_client hal_oemlock_hwservice:hwservice_manager find; diff --git a/public/hwservice.te b/public/hwservice.te index ca99105475620be318ebaf7e345d48b138a8c730..08881559476835e547c125e482a0744866f28d51 100644 --- a/public/hwservice.te +++ b/public/hwservice.te @@ -22,6 +22,7 @@ type hal_keymaster_hwservice, hwservice_manager_type; type hal_light_hwservice, hwservice_manager_type; type hal_memtrack_hwservice, hwservice_manager_type; type hal_nfc_hwservice, hwservice_manager_type; +type hal_oemlock_hwservice, hwservice_manager_type; type hal_omx_hwservice, hwservice_manager_type; type hal_power_hwservice, hwservice_manager_type; type hal_renderscript_hwservice, hwservice_manager_type, same_process_hwservice;