diff options
author | Tao Bao <tbao@google.com> | 2019-07-09 03:07:22 +0200 |
---|---|---|
committer | android-build-team Robot <android-build-team-robot@google.com> | 2019-07-17 05:10:07 +0200 |
commit | 793e8943eb1f1c968923de51b18403e717a05c79 (patch) | |
tree | 11049890be096b1f457b7189d81942bd67310dc1 /install/adb_install.cpp | |
parent | Snap for 5674462 from cdbd84de26bb213fee6d8560976d9b99eea75f77 to qt-release (diff) | |
download | android_bootable_recovery-793e8943eb1f1c968923de51b18403e717a05c79.tar android_bootable_recovery-793e8943eb1f1c968923de51b18403e717a05c79.tar.gz android_bootable_recovery-793e8943eb1f1c968923de51b18403e717a05c79.tar.bz2 android_bootable_recovery-793e8943eb1f1c968923de51b18403e717a05c79.tar.lz android_bootable_recovery-793e8943eb1f1c968923de51b18403e717a05c79.tar.xz android_bootable_recovery-793e8943eb1f1c968923de51b18403e717a05c79.tar.zst android_bootable_recovery-793e8943eb1f1c968923de51b18403e717a05c79.zip |
Diffstat (limited to 'install/adb_install.cpp')
-rw-r--r-- | install/adb_install.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/install/adb_install.cpp b/install/adb_install.cpp index 4dd1f1b09..9497df501 100644 --- a/install/adb_install.cpp +++ b/install/adb_install.cpp @@ -363,11 +363,13 @@ int ApplyFromAdb(Device* device, bool rescue_mode, Device::BuiltinAction* reboot "\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); |