summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2018-09-18 01:18:16 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-09-18 01:18:16 +0200
commit49dc0fed26750973a266ed4514a1990c6326665e (patch)
tree0b8ed0d96b48be0b53e2c6ae150b95d3f9f0f7cb
parentMerge "Allow switch to fastbootd when userdata wipe is required" (diff)
parentTrigger the logging when prompting for wipe. (diff)
downloadandroid_bootable_recovery-49dc0fed26750973a266ed4514a1990c6326665e.tar
android_bootable_recovery-49dc0fed26750973a266ed4514a1990c6326665e.tar.gz
android_bootable_recovery-49dc0fed26750973a266ed4514a1990c6326665e.tar.bz2
android_bootable_recovery-49dc0fed26750973a266ed4514a1990c6326665e.tar.lz
android_bootable_recovery-49dc0fed26750973a266ed4514a1990c6326665e.tar.xz
android_bootable_recovery-49dc0fed26750973a266ed4514a1990c6326665e.tar.zst
android_bootable_recovery-49dc0fed26750973a266ed4514a1990c6326665e.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);