diff options
author | Jaekyun Seok | 2017-11-27 21:10:10 -0600 |
---|---|---|
committer | Jaekyun Seok | 2018-01-24 18:37:20 -0600 |
commit | dff165d3a2db868689bae12db1ed8b3c74fa7d60 (patch) | |
tree | 6237fc0bf1607237788962972b1b47ed4170f003 /libcutils | |
parent | ccb9960bebe4e8ec7d674d8d1b778e5cd9669b48 (diff) | |
download | platform-system-core-dff165d3a2db868689bae12db1ed8b3c74fa7d60.tar.gz platform-system-core-dff165d3a2db868689bae12db1ed8b3c74fa7d60.tar.xz platform-system-core-dff165d3a2db868689bae12db1ed8b3c74fa7d60.zip |
Support /product partition
This CL will enable reading /product/build.prop and add product paths
into ld.config.txt.in.
Bug: 64195575
Test: tested with 'PRODUCT_PRODUCT_PROPERTIES := ro.product.abc=abc' on
sailfish
Change-Id: Ie996def20e25dc1afe0c74af2096af844934b2dc
Diffstat (limited to 'libcutils')
-rw-r--r-- | libcutils/fs_config.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcutils/fs_config.cpp b/libcutils/fs_config.cpp index f45472e7e..a993d411c 100644 --- a/libcutils/fs_config.cpp +++ b/libcutils/fs_config.cpp | |||
@@ -141,6 +141,7 @@ static const struct fs_path_config android_files[] = { | |||
141 | { 00444, AID_ROOT, AID_ROOT, 0, odm_conf_file + 1 }, | 141 | { 00444, AID_ROOT, AID_ROOT, 0, odm_conf_file + 1 }, |
142 | { 00444, AID_ROOT, AID_ROOT, 0, oem_conf_dir + 1 }, | 142 | { 00444, AID_ROOT, AID_ROOT, 0, oem_conf_dir + 1 }, |
143 | { 00444, AID_ROOT, AID_ROOT, 0, oem_conf_file + 1 }, | 143 | { 00444, AID_ROOT, AID_ROOT, 0, oem_conf_file + 1 }, |
144 | { 00600, AID_ROOT, AID_ROOT, 0, "product/build.prop" }, | ||
144 | { 00750, AID_ROOT, AID_SHELL, 0, "sbin/fs_mgr" }, | 145 | { 00750, AID_ROOT, AID_SHELL, 0, "sbin/fs_mgr" }, |
145 | { 00755, AID_ROOT, AID_SHELL, 0, "system/bin/crash_dump32" }, | 146 | { 00755, AID_ROOT, AID_SHELL, 0, "system/bin/crash_dump32" }, |
146 | { 00755, AID_ROOT, AID_SHELL, 0, "system/bin/crash_dump64" }, | 147 | { 00755, AID_ROOT, AID_SHELL, 0, "system/bin/crash_dump64" }, |