From 8d1b43bbf4716fafe5fd141042027cff17ec2b68 Mon Sep 17 00:00:00 2001 From: Nick Kralevich Date: Tue, 2 Apr 2019 08:54:17 -0700 Subject: [PATCH] Revert "relax /system/bin directory permissions" It appears Chase has fixed their app, so we no longer need to keep these permissions relaxed. This reverts commit 53842f8a9044db84109ee84dbacef09491be15c2. Bug: 119605322 Test: compiles and boots Change-Id: Iba5e9ecd685eb386997a5e92638b8a1b5943ad4b --- libcutils/fs_config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcutils/fs_config.cpp b/libcutils/fs_config.cpp index a3df38076..6217bc802 100644 --- a/libcutils/fs_config.cpp +++ b/libcutils/fs_config.cpp @@ -91,7 +91,7 @@ static const struct fs_path_config android_dirs[] = { { 00750, AID_ROOT, AID_SHELL, 0, "sbin" }, { 00777, AID_ROOT, AID_ROOT, 0, "sdcard" }, { 00751, AID_ROOT, AID_SDCARD_R, 0, "storage" }, - { 00755, AID_ROOT, AID_SHELL, 0, "system/bin" }, + { 00751, AID_ROOT, AID_SHELL, 0, "system/bin" }, { 00755, AID_ROOT, AID_ROOT, 0, "system/etc/ppp" }, { 00755, AID_ROOT, AID_SHELL, 0, "system/vendor" }, { 00751, AID_ROOT, AID_SHELL, 0, "system/xbin" },