summaryrefslogtreecommitdiffstats
path: root/adb_install.cpp
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2018-07-29 05:03:18 +0200
committerandroid-build-team Robot <android-build-team-robot@google.com>2018-07-29 05:03:18 +0200
commit9e142b34dd514c6a79a11e3553e83938839353e4 (patch)
tree04861af0abe2a1a8644732820824a79d40149336 /adb_install.cpp
parentSnap for 4908492 from 2e0f71a45dcce04fd36b1756ca25891486e47a7f to qt-release (diff)
parentMerge "minadbd: avoid overrriding services_to_fd." am: 6f1f2c811a am: 06ce8d32e6 am: 3bef3a72bd (diff)
downloadandroid_bootable_recovery-9e142b34dd514c6a79a11e3553e83938839353e4.tar
android_bootable_recovery-9e142b34dd514c6a79a11e3553e83938839353e4.tar.gz
android_bootable_recovery-9e142b34dd514c6a79a11e3553e83938839353e4.tar.bz2
android_bootable_recovery-9e142b34dd514c6a79a11e3553e83938839353e4.tar.lz
android_bootable_recovery-9e142b34dd514c6a79a11e3553e83938839353e4.tar.xz
android_bootable_recovery-9e142b34dd514c6a79a11e3553e83938839353e4.tar.zst
android_bootable_recovery-9e142b34dd514c6a79a11e3553e83938839353e4.zip
Diffstat (limited to 'adb_install.cpp')
-rw-r--r--adb_install.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/adb_install.cpp b/adb_install.cpp
index 4ee5333c7..97dff221d 100644
--- a/adb_install.cpp
+++ b/adb_install.cpp
@@ -82,7 +82,7 @@ int apply_from_adb(bool* wipe_cache) {
pid_t child;
if ((child = fork()) == 0) {
- execl("/sbin/recovery", "recovery", "--adbd", nullptr);
+ execl("/system/bin/recovery", "recovery", "--adbd", nullptr);
_exit(EXIT_FAILURE);
}