diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2023-02-17 18:43:29 +0000 |
---|---|---|
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | 2023-02-17 18:43:29 +0000 |
commit | 6f1bc37a23f99c2f4ceb05b3612bdbe4642a64c7 (patch) | |
tree | 36792b746ff8588f8cd6aa3df12d9667e8d98a36 | |
parent | cc6e61d041eb3b26010a423d6d968f097c748611 (diff) | |
parent | 039273bc9bc9d2a56b0a0c344560c1378d443a0c (diff) |
Merge "Revert^2 "sepolicy/vibrator: Update sepolicy to support adaptive haptics property"" am: ff2bbc7fa9 am: 039273bc9b
Original change: https://android-review.googlesource.com/c/platform/hardware/google/pixel-sepolicy/+/2441607
Change-Id: I33746490606284bae8e3f61f095aab67b5a9689b
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r-- | vibrator/common/property_contexts | 3 | ||||
-rw-r--r-- | vibrator/cs40l26/hal_vibrator_default.te | 3 | ||||
-rw-r--r-- | vibrator/cs40l26/vendor_init.te | 1 |
3 files changed, 6 insertions, 1 deletions
diff --git a/vibrator/common/property_contexts b/vibrator/common/property_contexts index 64a2600..089a357 100644 --- a/vibrator/common/property_contexts +++ b/vibrator/common/property_contexts @@ -1 +1,2 @@ -ro.vendor.vibrator.hal. u:object_r:vendor_vibrator_prop:s0 +ro.vendor.vibrator.hal. u:object_r:vendor_vibrator_prop:s0 +persist.vendor.vibrator.hal. u:object_r:vendor_vibrator_prop:s0 diff --git a/vibrator/cs40l26/hal_vibrator_default.te b/vibrator/cs40l26/hal_vibrator_default.te index 4fafe8a..c61cefe 100644 --- a/vibrator/cs40l26/hal_vibrator_default.te +++ b/vibrator/cs40l26/hal_vibrator_default.te @@ -15,6 +15,9 @@ r_dir_file(hal_vibrator_default, persist_haptics_file) get_prop(hal_vibrator_default, vendor_vibrator_prop); +# Allow Vibrator HAL to communicate with daemon via socket +unix_socket_connect(hal_vibrator_default, chre, chre); + # Allow vibrator HAL's default implementation to use vendor-binder service vndbinder_use(hal_vibrator_default); diff --git a/vibrator/cs40l26/vendor_init.te b/vibrator/cs40l26/vendor_init.te index 417a40c..da5a9d6 100644 --- a/vibrator/cs40l26/vendor_init.te +++ b/vibrator/cs40l26/vendor_init.te @@ -1 +1,2 @@ set_prop(vendor_init, vendor_vibrator_prop) +get_prop(vendor_init, adaptive_haptics_prop) |