Skip to content
Snippets Groups Projects
Commit be69f5f9 authored by Nick Kralevich's avatar Nick Kralevich Committed by Android Git Automerger
Browse files

am 6eabeb20: am c230c292: am c48971f6: allow system_server to set ro.build.fingerprint

* commit '6eabeb20':
  allow system_server to set ro.build.fingerprint
parents 5c85cc2d 6eabeb20
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ type shell_prop, property_type; ...@@ -3,6 +3,7 @@ type shell_prop, property_type;
type debug_prop, property_type; type debug_prop, property_type;
type debuggerd_prop, property_type; type debuggerd_prop, property_type;
type dhcp_prop, property_type; type dhcp_prop, property_type;
type fingerprint_prop, property_type;
type radio_prop, property_type; type radio_prop, property_type;
type net_radio_prop, property_type; type net_radio_prop, property_type;
type system_radio_prop, property_type; type system_radio_prop, property_type;
......
...@@ -49,6 +49,10 @@ selinux. u:object_r:security_prop:s0 ...@@ -49,6 +49,10 @@ selinux. u:object_r:security_prop:s0
vold. u:object_r:vold_prop:s0 vold. u:object_r:vold_prop:s0
crypto. u:object_r:vold_prop:s0 crypto. u:object_r:vold_prop:s0
# ro.build.fingerprint is either set in /system/build.prop, or is
# set at runtime by system_server.
build.fingerprint u:object_r:fingerprint_prop:s0
# ctl properties # ctl properties
ctl.bootanim u:object_r:ctl_bootanim_prop:s0 ctl.bootanim u:object_r:ctl_bootanim_prop:s0
ctl.dumpstate u:object_r:ctl_dumpstate_prop:s0 ctl.dumpstate u:object_r:ctl_dumpstate_prop:s0
......
...@@ -281,6 +281,7 @@ allow system_server net_radio_prop:property_service set; ...@@ -281,6 +281,7 @@ allow system_server net_radio_prop:property_service set;
allow system_server system_radio_prop:property_service set; allow system_server system_radio_prop:property_service set;
allow system_server debug_prop:property_service set; allow system_server debug_prop:property_service set;
allow system_server powerctl_prop:property_service set; allow system_server powerctl_prop:property_service set;
allow system_server fingerprint_prop:property_service set;
# ctl interface # ctl interface
allow system_server ctl_default_prop:property_service set; allow system_server ctl_default_prop:property_service set;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment