This CL also moves the chre.te file from legacy to vendor. Bug: 298459533 Test: Use stats service from chre Change-Id: I6b954983e71b436a0dfef8a50cc2ce352bd14d79
24 lines
732 B
Text
24 lines
732 B
Text
type chre, domain;
|
|
type chre_exec, vendor_file_type, exec_type, file_type;
|
|
init_daemon_domain(chre)
|
|
|
|
# Permit communication with AoC
|
|
allow chre aoc_device:chr_file rw_file_perms;
|
|
|
|
# Allow CHRE to determine AoC's current clock
|
|
allow chre sysfs_aoc:dir search;
|
|
allow chre sysfs_aoc_boottime:file r_file_perms;
|
|
|
|
# Allow CHRE to create thread to watch AOC's device
|
|
allow chre device:dir r_dir_perms;
|
|
|
|
# Allow CHRE to write to data to chre data directory
|
|
allow chre chre_data_file:dir create_dir_perms;
|
|
allow chre chre_data_file:file create_file_perms;
|
|
|
|
# Allow CHRE to use WakeLock
|
|
wakelock_use(chre)
|
|
|
|
# Allow CHRE host to talk to stats service
|
|
allow chre fwk_stats_service:service_manager find;
|
|
binder_call(chre, stats_service_server)
|