summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKoushik Dutta <koushd@gmail.com>2013-05-09 23:12:24 -0700
committerKoushik Dutta <koushd@gmail.com>2013-05-09 23:12:24 -0700
commit2c714433c836bb9dc31e07733de69b7666c9de85 (patch)
tree736c487e6350048e0af2c347ce4756abd5fb415e
parent1a51d7fefe18a7142a5483a9d3345beee230fe16 (diff)
downloadsystem_core-2c714433c836bb9dc31e07733de69b7666c9de85.zip
system_core-2c714433c836bb9dc31e07733de69b7666c9de85.tar.gz
system_core-2c714433c836bb9dc31e07733de69b7666c9de85.tar.bz2
backup service: fall back to /sbin/bu
Change-Id: I46c67a401da8de92d7ef81ad40c565bb1d2ef93b
-rw-r--r--adb/backup_service.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/adb/backup_service.c b/adb/backup_service.c
index 669ff86..ae87c75 100644
--- a/adb/backup_service.c
+++ b/adb/backup_service.c
@@ -127,6 +127,7 @@ int backup_service(BackupOperation op, char* args) {
// off we go
execvp("/system/bin/bu", (char * const *)bu_args);
+ execvp("/sbin/bu", (char * const *)bu_args);
// oops error - close up shop and go home
fprintf(stderr, "Unable to exec 'bu', bailing\n");
exit(-1);