summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Crowley <paulcrowley@google.com>2017-03-24 00:41:41 +0100
committerandroid-build-merger <android-build-merger@google.com>2017-03-24 00:41:41 +0100
commit25bf90201c4c07ec6648f1b6355661dd6dc9e1be (patch)
tree88bbf8f1a4baf2d4649f1fe70d356fdd7b5952b1
parentMerge "Redundant checking of STL container element" am: b56a3c2e3a (diff)
parentMerge "Reword the wipe warning message to be more comprehensible." (diff)
downloadandroid_bootable_recovery-25bf90201c4c07ec6648f1b6355661dd6dc9e1be.tar
android_bootable_recovery-25bf90201c4c07ec6648f1b6355661dd6dc9e1be.tar.gz
android_bootable_recovery-25bf90201c4c07ec6648f1b6355661dd6dc9e1be.tar.bz2
android_bootable_recovery-25bf90201c4c07ec6648f1b6355661dd6dc9e1be.tar.lz
android_bootable_recovery-25bf90201c4c07ec6648f1b6355661dd6dc9e1be.tar.xz
android_bootable_recovery-25bf90201c4c07ec6648f1b6355661dd6dc9e1be.tar.zst
android_bootable_recovery-25bf90201c4c07ec6648f1b6355661dd6dc9e1be.zip
-rw-r--r--recovery.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/recovery.cpp b/recovery.cpp
index ccb8e5d95..4bbc7831e 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -752,13 +752,15 @@ static bool wipe_data(Device* device) {
static bool prompt_and_wipe_data(Device* device) {
const char* const headers[] = {
- "Boot halted, user data is corrupt",
- "Wipe all user data to recover",
+ "Can't load Android system. Your data may be corrupt.",
+ "If you continue to get this message, you may need to",
+ "perform a factory data reset and erase all user data",
+ "stored on this device.",
NULL
};
const char* const items[] = {
- "Retry boot",
- "Wipe user data",
+ "Try again",
+ "Factory data reset",
NULL
};
for (;;) {