summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-09-18 01:32:00 +0200
committerandroid-build-merger <android-build-merger@google.com>2018-09-18 01:32:00 +0200
commitad5d33783216250977d4605382bb9a8ec78ec989 (patch)
tree0b8ed0d96b48be0b53e2c6ae150b95d3f9f0f7cb
parentMerge "Allow switch to fastbootd when userdata wipe is required" am: 16147d1bd6 (diff)
parentMerge "Trigger the logging when prompting for wipe." (diff)
downloadandroid_bootable_recovery-ad5d33783216250977d4605382bb9a8ec78ec989.tar
android_bootable_recovery-ad5d33783216250977d4605382bb9a8ec78ec989.tar.gz
android_bootable_recovery-ad5d33783216250977d4605382bb9a8ec78ec989.tar.bz2
android_bootable_recovery-ad5d33783216250977d4605382bb9a8ec78ec989.tar.lz
android_bootable_recovery-ad5d33783216250977d4605382bb9a8ec78ec989.tar.xz
android_bootable_recovery-ad5d33783216250977d4605382bb9a8ec78ec989.tar.zst
android_bootable_recovery-ad5d33783216250977d4605382bb9a8ec78ec989.zip
-rw-r--r--recovery.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 6248cf70f..7cc344bce 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -1196,6 +1196,9 @@ Device::BuiltinAction start_recovery(Device* device, const std::vector<std::stri
status = INSTALL_ERROR;
}
} else if (should_prompt_and_wipe_data) {
+ // Trigger the logging to capture the cause, even if user chooses to not wipe data.
+ modified_flash = true;
+
ui->ShowText(true);
ui->SetBackground(RecoveryUI::ERROR);
status = prompt_and_wipe_data(device);