fs_config.c: make *.prop files 0600
Enforce that the only API for reading properties is through the property server, not by reading the (system|vendor|rootfs) *.prop files. Test: Device boots and no property errors. Change-Id: Ibb6ed4e74a80cac00010c707d7574f8e92fc6448
This commit is contained in:
parent
d0ee73932f
commit
5f9fa90425
|
@ -188,6 +188,9 @@ static const struct fs_path_config android_files[] = {
|
|||
{ 00750, AID_ROOT, AID_SHELL, 0, "init*" },
|
||||
{ 00750, AID_ROOT, AID_SHELL, 0, "sbin/fs_mgr" },
|
||||
{ 00640, AID_ROOT, AID_SHELL, 0, "fstab.*" },
|
||||
{ 00600, AID_ROOT, AID_ROOT, 0, "system/build.prop" },
|
||||
{ 00600, AID_ROOT, AID_ROOT, 0, "vendor/build.prop" },
|
||||
{ 00600, AID_ROOT, AID_ROOT, 0, "default.prop" },
|
||||
{ 00644, AID_ROOT, AID_ROOT, 0, 0 },
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue