summaryrefslogtreecommitdiffstats
path: root/adb_install.cpp
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2018-07-27 22:25:53 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-07-27 22:25:53 +0200
commit4c807687965dfc1bd8a9df122c9ec368dfb1a3d3 (patch)
tree96f21b978dd20f2f2bb32540993d637acf74a06a /adb_install.cpp
parentMerge "Add proto3 support for care_map" (diff)
parentMove recovery from /sbin to /system/bin (diff)
downloadandroid_bootable_recovery-4c807687965dfc1bd8a9df122c9ec368dfb1a3d3.tar
android_bootable_recovery-4c807687965dfc1bd8a9df122c9ec368dfb1a3d3.tar.gz
android_bootable_recovery-4c807687965dfc1bd8a9df122c9ec368dfb1a3d3.tar.bz2
android_bootable_recovery-4c807687965dfc1bd8a9df122c9ec368dfb1a3d3.tar.lz
android_bootable_recovery-4c807687965dfc1bd8a9df122c9ec368dfb1a3d3.tar.xz
android_bootable_recovery-4c807687965dfc1bd8a9df122c9ec368dfb1a3d3.tar.zst
android_bootable_recovery-4c807687965dfc1bd8a9df122c9ec368dfb1a3d3.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);
}