Skip to content
Snippets Groups Projects
Commit 842cc268 authored by Max Bires's avatar Max Bires
Browse files

Fixing traceur selinux permission error

getattr for trace_data_file:dir permissions was missing, impacting
functionality.

Bug:68126425
Test: Traceur functionality is properly working
Change-Id: I2c8ae5cf3463a8e5309b8402713744e036a64171
parent 7724907f
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,6 @@ userdebug_or_eng(` ...@@ -5,6 +5,6 @@ userdebug_or_eng(`
allow traceur_app debugfs_tracing:file rw_file_perms; allow traceur_app debugfs_tracing:file rw_file_perms;
allow traceur_app debugfs_tracing_debug:file rw_file_perms; allow traceur_app debugfs_tracing_debug:file rw_file_perms;
allow traceur_app trace_data_file:file create_file_perms; allow traceur_app trace_data_file:file create_file_perms;
allow traceur_app trace_data_file:dir { add_name search write }; allow traceur_app trace_data_file:dir { add_name getattr search write };
allow traceur_app atrace_exec:file rx_file_perms; allow traceur_app atrace_exec:file rx_file_perms;
') ')
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