Advertisement
deadman96385

Untitled

Dec 7th, 2015
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. steve@server-CS24-SC:~/Sean/device/samsung/klimtlte$ grep denied denials.log | audit2allow -mp ../../../out/target/product/klimtlte/root/sepolicy
  2.  
  3. module p 1.0;
  4.  
  5. require {
  6. type vold;
  7. type system_server;
  8. type rild;
  9. type mediaserver;
  10. type default_prop;
  11. type efs_file;
  12. type untrusted_app;
  13. type bootanim_exec;
  14. class capability dac_override;
  15. class property_service set;
  16. class file getattr;
  17. class dir { search open };
  18. }
  19.  
  20. #============= rild ==============
  21. allow rild mediaserver:dir search;
  22. allow rild self:capability dac_override;
  23.  
  24. #============= system_server ==============
  25. allow system_server default_prop:property_service set;
  26.  
  27. #============= untrusted_app ==============
  28. allow untrusted_app bootanim_exec:file getattr;
  29.  
  30. #============= vold ==============
  31. allow vold efs_file:dir open;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement