diff options
author | Tao Bao <tbao@google.com> | 2015-03-31 19:25:21 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-03-31 19:25:21 +0200 |
commit | 9295980ac1554ff7c30531298aadec0750b027e0 (patch) | |
tree | 2dfb0dec13b9285f209d32e7f6d7a1436743c0cc /recovery.cpp | |
parent | Merge "Add support to enter sideload mode directly" (diff) | |
parent | Revert "Erase PST partition if its marked to be erased." (diff) | |
download | android_bootable_recovery-9295980ac1554ff7c30531298aadec0750b027e0.tar android_bootable_recovery-9295980ac1554ff7c30531298aadec0750b027e0.tar.gz android_bootable_recovery-9295980ac1554ff7c30531298aadec0750b027e0.tar.bz2 android_bootable_recovery-9295980ac1554ff7c30531298aadec0750b027e0.tar.lz android_bootable_recovery-9295980ac1554ff7c30531298aadec0750b027e0.tar.xz android_bootable_recovery-9295980ac1554ff7c30531298aadec0750b027e0.tar.zst android_bootable_recovery-9295980ac1554ff7c30531298aadec0750b027e0.zip |
Diffstat (limited to '')
-rw-r--r-- | recovery.cpp | 2 |
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; |