summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorAndres Morales <anmorales@google.com>2015-03-30 22:56:57 +0200
committerTao Bao <tbao@google.com>2015-03-31 18:48:50 +0200
commitc277762de13653f73451e1a21fe73eafc51f918e (patch)
tree2dfb0dec13b9285f209d32e7f6d7a1436743c0cc /recovery.cpp
parentMerge "Add support to enter sideload mode directly" (diff)
downloadandroid_bootable_recovery-c277762de13653f73451e1a21fe73eafc51f918e.tar
android_bootable_recovery-c277762de13653f73451e1a21fe73eafc51f918e.tar.gz
android_bootable_recovery-c277762de13653f73451e1a21fe73eafc51f918e.tar.bz2
android_bootable_recovery-c277762de13653f73451e1a21fe73eafc51f918e.tar.lz
android_bootable_recovery-c277762de13653f73451e1a21fe73eafc51f918e.tar.xz
android_bootable_recovery-c277762de13653f73451e1a21fe73eafc51f918e.tar.zst
android_bootable_recovery-c277762de13653f73451e1a21fe73eafc51f918e.zip
Diffstat (limited to 'recovery.cpp')
-rw-r--r--recovery.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/recovery.cpp b/recovery.cpp
index a390c8afb..4e43e8362 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -695,7 +695,6 @@ static void wipe_data(int confirm, Device* device) {
device->WipeData();
erase_volume("/data");
erase_volume("/cache");
- erase_persistent_partition();
ui->Print("Data wipe complete.\n");
}
@@ -1102,7 +1101,6 @@ main(int argc, char **argv) {
if (device->WipeData()) status = INSTALL_ERROR;
if (erase_volume("/data")) status = INSTALL_ERROR;
if (should_wipe_cache && erase_volume("/cache")) status = INSTALL_ERROR;
- if (erase_persistent_partition() == -1 ) status = INSTALL_ERROR;
if (status != INSTALL_SUCCESS) ui->Print("Data wipe failed.\n");
} else if (should_wipe_cache) {
if (should_wipe_cache && erase_volume("/cache")) status = INSTALL_ERROR;