Turn on executable bit on system_ext/bin
Setting executable bit on system_ext/bin is missing, so add them into list. Bug: 144066307 Test: m && check if system_ext/bin/* have execute permission. Change-Id: I89c9e0d2d54f965ecd058bb9e77ba77b7ed164c1
This commit is contained in:
parent
2aabeed1fd
commit
4e467e71e9
|
@ -85,6 +85,7 @@ static const struct fs_path_config android_dirs[] = {
|
|||
{ 00755, AID_ROOT, AID_SHELL, 0, "system/vendor" },
|
||||
{ 00751, AID_ROOT, AID_SHELL, 0, "system/xbin" },
|
||||
{ 00751, AID_ROOT, AID_SHELL, 0, "system/apex/*/bin" },
|
||||
{ 00751, AID_ROOT, AID_SHELL, 0, "system_ext/bin" },
|
||||
{ 00751, AID_ROOT, AID_SHELL, 0, "vendor/bin" },
|
||||
{ 00755, AID_ROOT, AID_SHELL, 0, "vendor" },
|
||||
{ 00755, AID_ROOT, AID_ROOT, 0, 0 },
|
||||
|
@ -207,6 +208,7 @@ static const struct fs_path_config android_files[] = {
|
|||
{ 00755, AID_ROOT, AID_SHELL, 0, "system/bin/*" },
|
||||
{ 00755, AID_ROOT, AID_SHELL, 0, "system/xbin/*" },
|
||||
{ 00755, AID_ROOT, AID_SHELL, 0, "system/apex/*/bin/*" },
|
||||
{ 00755, AID_ROOT, AID_SHELL, 0, "system_ext/bin/*" },
|
||||
{ 00755, AID_ROOT, AID_SHELL, 0, "vendor/bin/*" },
|
||||
{ 00755, AID_ROOT, AID_SHELL, 0, "vendor/xbin/*" },
|
||||
{ 00644, AID_ROOT, AID_ROOT, 0, 0 },
|
||||
|
|
Loading…
Reference in New Issue