Merge "Load *_compat_cil_file from system_ext as well" am: 3841fdfa3c

Original change: https://android-review.googlesource.com/c/platform/system/core/+/1650271

Change-Id: I7e01eddc0ca726328ed6c0b310c93e237b7cf39e
This commit is contained in:
Yo Chiang 2021-04-13 06:33:38 +00:00 committed by Automerger Merge Worker
commit 6e944a9484

View file

@ -372,6 +372,12 @@ bool OpenSplitPolicy(PolicyFile* policy_file) {
system_ext_mapping_file.clear();
}
std::string system_ext_compat_cil_file("/system_ext/etc/selinux/mapping/" + vend_plat_vers +
".compat.cil");
if (access(system_ext_compat_cil_file.c_str(), F_OK) == -1) {
system_ext_compat_cil_file.clear();
}
std::string product_policy_cil_file("/product/etc/selinux/product_sepolicy.cil");
if (access(product_policy_cil_file.c_str(), F_OK) == -1) {
product_policy_cil_file.clear();
@ -426,6 +432,9 @@ bool OpenSplitPolicy(PolicyFile* policy_file) {
if (!system_ext_mapping_file.empty()) {
compile_args.push_back(system_ext_mapping_file.c_str());
}
if (!system_ext_compat_cil_file.empty()) {
compile_args.push_back(system_ext_compat_cil_file.c_str());
}
if (!product_policy_cil_file.empty()) {
compile_args.push_back(product_policy_cil_file.c_str());
}