Merge "Introduce derive_classpath."
This commit is contained in:
commit
ba22487f86
4 changed files with 16 additions and 2 deletions
|
@ -1,2 +1,3 @@
|
|||
(/.*)? u:object_r:system_file:s0
|
||||
/bin/derive_sdk u:object_r:derive_sdk_exec:s0
|
||||
(/.*)? u:object_r:system_file:s0
|
||||
/bin/derive_classpath u:object_r:derive_classpath_exec:s0
|
||||
/bin/derive_sdk u:object_r:derive_sdk_exec:s0
|
||||
|
|
9
private/derive_classpath.te
Normal file
9
private/derive_classpath.te
Normal file
|
@ -0,0 +1,9 @@
|
|||
|
||||
# Domain for derive_classpath
|
||||
type derive_classpath, domain, coredomain;
|
||||
type derive_classpath_exec, system_file_type, exec_type, file_type;
|
||||
init_daemon_domain(derive_classpath)
|
||||
|
||||
# Create /data/system/environ/classpath file
|
||||
allow derive_classpath environ_system_data_file:dir rw_dir_perms;
|
||||
allow derive_classpath environ_system_data_file:file create_file_perms;
|
|
@ -53,3 +53,6 @@ type font_data_file, file_type, data_file_type, core_data_file_type;
|
|||
|
||||
# /data/misc/odsign
|
||||
type odsign_data_file, file_type, data_file_type, core_data_file_type;
|
||||
|
||||
# /data/system/environ
|
||||
type environ_system_data_file, file_type, data_file_type, core_data_file_type;
|
||||
|
|
|
@ -504,6 +504,7 @@
|
|||
#
|
||||
/data u:object_r:system_data_root_file:s0
|
||||
/data/(.*)? u:object_r:system_data_file:s0
|
||||
/data/system/environ(/.*)? u:object_r:environ_system_data_file:s0
|
||||
/data/system/packages\.list u:object_r:packages_list_file:s0
|
||||
/data/unencrypted(/.*)? u:object_r:unencrypted_data_file:s0
|
||||
/data/backup(/.*)? u:object_r:backup_data_file:s0
|
||||
|
|
Loading…
Reference in a new issue