summaryrefslogtreecommitdiffstats
path: root/install/adb_install.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2019-07-09 03:07:22 +0200
committerTao Bao <tbao@google.com>2019-07-09 20:09:34 +0200
commit2223e6a9f8bf24b023e8ae3103b50c37def3147e (patch)
treecd234862926d9c67dcde446000deb4ba7c7b3efd /install/adb_install.cpp
parentMerge "Add a GetMappedPackageLength to Updater" (diff)
downloadandroid_bootable_recovery-2223e6a9f8bf24b023e8ae3103b50c37def3147e.tar
android_bootable_recovery-2223e6a9f8bf24b023e8ae3103b50c37def3147e.tar.gz
android_bootable_recovery-2223e6a9f8bf24b023e8ae3103b50c37def3147e.tar.bz2
android_bootable_recovery-2223e6a9f8bf24b023e8ae3103b50c37def3147e.tar.lz
android_bootable_recovery-2223e6a9f8bf24b023e8ae3103b50c37def3147e.tar.xz
android_bootable_recovery-2223e6a9f8bf24b023e8ae3103b50c37def3147e.tar.zst
android_bootable_recovery-2223e6a9f8bf24b023e8ae3103b50c37def3147e.zip
Diffstat (limited to '')
-rw-r--r--install/adb_install.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/install/adb_install.cpp b/install/adb_install.cpp
index 37280a34c..ed664429a 100644
--- a/install/adb_install.cpp
+++ b/install/adb_install.cpp
@@ -367,11 +367,13 @@ InstallResult ApplyFromAdb(Device* device, bool rescue_mode, Device::BuiltinActi
"\n\nNow send the package you want to apply\n"
"to the device with \"adb sideload <filename>\"...\n");
} else {
- ui->Print("\n\nWaiting for rescue commands...\n");
command_map.emplace(MinadbdCommand::kWipeData, [&device]() {
bool result = WipeData(device, false);
return std::make_pair(result, true);
});
+ command_map.emplace(MinadbdCommand::kNoOp, []() { return std::make_pair(true, true); });
+
+ ui->Print("\n\nWaiting for rescue commands...\n");
}
CreateMinadbdServiceAndExecuteCommands(ui, command_map, rescue_mode);