summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorHridya Valsaraju <hridya@google.com>2018-09-13 03:20:13 +0200
committerandroid-build-merger <android-build-merger@google.com>2018-09-13 03:20:13 +0200
commit3d82f2ee239db7344335a6ab980f25050724e672 (patch)
treea89715473b29f44bc5a26c23bcc5dfc1b7907b87 /recovery.cpp
parentMerge "minui: Track the name change to minui related properties." am: da46f9067a am: 3d95692b5e (diff)
parentMerge "Allow switch to fastbootd when userdata wipe is required" am: 16147d1bd6 (diff)
downloadandroid_bootable_recovery-3d82f2ee239db7344335a6ab980f25050724e672.tar
android_bootable_recovery-3d82f2ee239db7344335a6ab980f25050724e672.tar.gz
android_bootable_recovery-3d82f2ee239db7344335a6ab980f25050724e672.tar.bz2
android_bootable_recovery-3d82f2ee239db7344335a6ab980f25050724e672.tar.lz
android_bootable_recovery-3d82f2ee239db7344335a6ab980f25050724e672.tar.xz
android_bootable_recovery-3d82f2ee239db7344335a6ab980f25050724e672.tar.zst
android_bootable_recovery-3d82f2ee239db7344335a6ab980f25050724e672.zip
Diffstat (limited to 'recovery.cpp')
-rw-r--r--recovery.cpp18
1 files changed, 11 insertions, 7 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 5934b61d7..6248cf70f 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -394,7 +394,7 @@ static bool wipe_data(Device* device) {
return success;
}
-static bool prompt_and_wipe_data(Device* device) {
+static InstallResult prompt_and_wipe_data(Device* device) {
// Use a single string and let ScreenRecoveryUI handles the wrapping.
std::vector<std::string> headers{
"Can't load Android system. Your data may be corrupt. "
@@ -415,13 +415,17 @@ static bool prompt_and_wipe_data(Device* device) {
// If ShowMenu() returned RecoveryUI::KeyError::INTERRUPTED, WaitKey() was interrupted.
if (chosen_item == static_cast<size_t>(RecoveryUI::KeyError::INTERRUPTED)) {
- return false;
+ return INSTALL_KEY_INTERRUPTED;
}
if (chosen_item != 1) {
- return true; // Just reboot, no wipe; not a failure, user asked for it
+ return INSTALL_SUCCESS; // Just reboot, no wipe; not a failure, user asked for it
}
if (ask_to_wipe_data(device)) {
- return wipe_data(device);
+ if (wipe_data(device)) {
+ return INSTALL_SUCCESS;
+ } else {
+ return INSTALL_ERROR;
+ }
}
}
}
@@ -1194,10 +1198,10 @@ Device::BuiltinAction start_recovery(Device* device, const std::vector<std::stri
} else if (should_prompt_and_wipe_data) {
ui->ShowText(true);
ui->SetBackground(RecoveryUI::ERROR);
- if (!prompt_and_wipe_data(device)) {
- status = INSTALL_ERROR;
+ status = prompt_and_wipe_data(device);
+ if (status != INSTALL_KEY_INTERRUPTED) {
+ ui->ShowText(false);
}
- ui->ShowText(false);
} else if (should_wipe_cache) {
if (!wipe_cache(false, device)) {
status = INSTALL_ERROR;