diff options
author | Tai Kuo <taikuo@google.com> | 2023-02-17 07:31:33 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2023-02-17 07:31:33 +0000 |
commit | e7c5f149e545891b6a8a70267d624476a1fbbd75 (patch) | |
tree | a6fe979e4b30835880e28f9ec251ce84065f2069 | |
parent | 92818aad0052c0f9402dbce917c57ece6d020577 (diff) |
Revert^2 "sepolicy/vibrator: Update sepolicy to support adaptive haptics property"
This reverts commit 92818aad0052c0f9402dbce917c57ece6d020577.
Reason for revert: duplicated {device}-sepolicy downstream rules were removed. It is now safe to re-enable the pixel-sepolicy.
Change-Id: I362f52a0805835dfd428c6302c48ba70f24feeb6
-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 478bee9..060c484 100644 --- a/vibrator/cs40l26/hal_vibrator_default.te +++ b/vibrator/cs40l26/hal_vibrator_default.te @@ -15,5 +15,8 @@ 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) |