sm7250-common: sepolicy: Attach vendor_property_type to properties

We are going to enforce that each property has an explicit owner, such
as system, vendor, or product. This attaches vendor_property_type to
properties defined under vendor sepolicy directories.

Bug: 159097992
Test: m selinux_policy && boot device
Change-Id: I33c40ca345365d8f01f43d3ce7f1f3434b1edfd5
This commit is contained in:
Inseob Kim 2022-02-03 13:01:30 +01:00 committed by xSylla
parent cedd2fecf6
commit d593816647
2 changed files with 8 additions and 6 deletions

View File

@ -1,2 +1,2 @@
# IMEI
type deviceid_prop, property_type;
vendor_public_prop(deviceid_prop);

View File

@ -1,9 +1,11 @@
type vendor_fp_prop, property_type;
vendor_internal_prop(power_prop);
type vendor_fm_prop, property_type;
vendor_internal_prop(thermal_normal_prop);
type vendor_device_prop, property_type;
vendor_internal_prop(vendor_device_prop);
type power_prop, property_type;
vendor_internal_prop(vendor_fm_prop);
type thermal_normal_prop, property_type;
vendor_internal_prop(vendor_fod_prop);
vendor_public_prop(vendor_fp_prop);