diff options
author | Doug Zongker <dougz@android.com> | 2014-02-04 12:15:14 -0800 |
---|---|---|
committer | Doug Zongker <dougz@android.com> | 2014-02-04 12:33:08 -0800 |
commit | 9526202d84387df3950bf526bbbaeac1ede129d2 (patch) | |
tree | 23e98ca698f7c1698d63654423ef80829d5506ca /include/private/android_filesystem_config.h | |
parent | 5a23144aa5c6f4a7b93bcc5a218ca9ce8f4d7f3b (diff) |
set permissions of recovery install script
The script that writes the recovery partition after a successful
update of system needs to be made executable. This change also moves
it from /system/etc to /system/bin.
Bug: 12893978
Change-Id: I686e2392a2392515a6859a7381b735de1007b7ea
Diffstat (limited to 'include/private/android_filesystem_config.h')
-rw-r--r-- | include/private/android_filesystem_config.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/private/android_filesystem_config.h b/include/private/android_filesystem_config.h index e3568ae04..20bfdbe41 100644 --- a/include/private/android_filesystem_config.h +++ b/include/private/android_filesystem_config.h @@ -248,6 +248,7 @@ static const struct fs_path_config android_files[] = { { 00750, AID_ROOT, AID_SHELL, (1 << CAP_SETUID) | (1 << CAP_SETGID), "system/bin/run-as" }, { 00750, AID_ROOT, AID_ROOT, 0, "system/bin/uncrypt" }, + { 00750, AID_ROOT, AID_ROOT, 0, "system/bin/install-recovery.sh" }, { 00755, AID_ROOT, AID_SHELL, 0, "system/bin/*" }, { 00755, AID_ROOT, AID_ROOT, 0, "system/lib/valgrind/*" }, { 00755, AID_ROOT, AID_SHELL, 0, "system/xbin/*" }, |