Fix backup of datadata

Change-Id: Ib0098542599283787592ba08caa070dc818d6111
This commit is contained in:
Dees_Troy
2013-06-19 14:53:57 -05:00
committed by Dees_Troy
parent 76543db6e6
commit 59df9264e3
2 changed files with 19 additions and 13 deletions
+4 -3
View File
@@ -865,7 +865,7 @@ int TWPartitionManager::Run_Restore(string Restore_Name) {
}
}
} else {
LOGERR("Unable to locate '%s' partition for restoring.\n", restore_path.c_str());
LOGERR("Unable to locate '%s' partition for restoring (restore list).\n", restore_path.c_str());
}
start_pos = end_pos + 1;
end_pos = Restore_List.find(";", start_pos);
@@ -1814,9 +1814,10 @@ void TWPartitionManager::Get_Partition_List(string ListType, std::vector<Partiti
size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
while (end_pos != string::npos && start_pos < Restore_List.size()) {
restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL && !restore_part->Is_SubPartition) {
if (restore_part->Backup_Name == "recovery") {
if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
if (restore_part->Backup_Name == "recovery" || restore_part->Is_SubPartition) {
// Don't allow restore of recovery (causes problems on some devices)
// Don't add subpartitions to the list of items
} else {
struct PartitionList part;
part.Display_Name = restore_part->Backup_Display_Name;