Merge "logpersist: introduce split to logcat and logpersist domains"

This commit is contained in:
Treehugger Robot 2016-12-20 22:08:41 +00:00 committed by Gerrit Code Review
commit 04f2cbd92a
2 changed files with 12 additions and 11 deletions

View File

@ -1,11 +0,0 @@
# goldfish logcat service: runs logcat -Q in logd domain
# See global logd.te, these only set for eng & userdebug, allow for all builds
domain_auto_trans(init, logcat_exec, logd)
# Read from logd.
read_logd(logd)
# Write to /dev/ttyS2 and /dev/ttyGF2.
allow logd serial_device:chr_file { write open };

View File

@ -0,0 +1,12 @@
# goldfish logcat service: runs logcat -Q in logpersist domain
# See global logcat.te/logpersist.te, only set for eng & userdebug,
# allow for all builds in a non-conflicting manner.
domain_auto_trans(init, logcat_exec, logpersist)
# Read from logd.
unix_socket_connect(logpersist, logdr, logd)
# Write to /dev/ttyS2 and /dev/ttyGF2.
allow logpersist serial_device:chr_file { write open };