Merge "Copy 16KB developer option sepolicy to zumapro" into main

This commit is contained in:
Juan Yescas 2024-10-17 01:38:36 +00:00 committed by Android (Google) Code Review
commit c6c4da00d4
6 changed files with 68 additions and 0 deletions

3
vendor/property.te vendored
View file

@ -18,3 +18,6 @@ vendor_internal_prop(vendor_battery_defender_prop)
# Mali Integration
vendor_restricted_prop(vendor_arm_runtime_option_prop)
# This prop will be set to "mounted" after /mnt/vendor/persist mounts
vendor_internal_prop(vendor_persist_prop)

View file

@ -36,3 +36,6 @@ ro.vendor.primarydisplay.vrr.expected_present.headsup_ns u:object_r:vendor
ro.vendor.primarydisplay.vrr.expected_present.timeout_ns u:object_r:vendor_display_prop:s0 exact int
ro.vendor.primarydisplay.powerstats.entity_name u:object_r:vendor_display_prop:s0 exact string
ro.vendor.secondarydisplay.blocking_zone.min_refresh_rate_by_nits u:object_r:vendor_display_prop:s0 exact string
# For checking if persist partition is mounted
ro.vendor.persist.status u:object_r:vendor_persist_prop:s0 exact string

View file

@ -8,3 +8,6 @@ userdebug_or_eng(`
set_prop(vendor_init, vendor_imssvc_prop)
')
# Allow vendor_init to read ro.vendor.persist.status
# to process init.rc actions
set_prop(vendor_init, vendor_persist_prop)