summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEthan Yonker <dees_troy@teamw.in>2014-02-03 22:27:52 +0100
committerEthan Yonker <dees_troy@teamw.in>2014-02-03 22:27:52 +0100
commitd4d107388c531c4b3bb7a57ec7771b233d9055c2 (patch)
tree805bb5f38e4db37a08a4f06ae12ca815d27d53b5
parentRefactor twrpTar to use TarList (diff)
downloadandroid_bootable_recovery-d4d107388c531c4b3bb7a57ec7771b233d9055c2.tar
android_bootable_recovery-d4d107388c531c4b3bb7a57ec7771b233d9055c2.tar.gz
android_bootable_recovery-d4d107388c531c4b3bb7a57ec7771b233d9055c2.tar.bz2
android_bootable_recovery-d4d107388c531c4b3bb7a57ec7771b233d9055c2.tar.lz
android_bootable_recovery-d4d107388c531c4b3bb7a57ec7771b233d9055c2.tar.xz
android_bootable_recovery-d4d107388c531c4b3bb7a57ec7771b233d9055c2.tar.zst
android_bootable_recovery-d4d107388c531c4b3bb7a57ec7771b233d9055c2.zip
-rw-r--r--partition.cpp13
-rw-r--r--partitionmanager.cpp3
2 files changed, 4 insertions, 12 deletions
diff --git a/partition.cpp b/partition.cpp
index 541289a0b..29b071c5b 100644
--- a/partition.cpp
+++ b/partition.cpp
@@ -361,10 +361,6 @@ bool TWPartition::Process_Fstab_Line(string Line, bool Display_Error) {
Is_Storage = true;
Removable = true;
Wipe_Available_in_GUI = true;
-#ifndef RECOVERY_SDCARD_ON_DATA
- Setup_AndSec();
- Mount_Storage_Retry();
-#endif
#endif
}
#ifdef TW_INTERNAL_STORAGE_PATH
@@ -373,20 +369,12 @@ bool TWPartition::Process_Fstab_Line(string Line, bool Display_Error) {
Is_Settings_Storage = true;
Storage_Path = EXPAND(TW_INTERNAL_STORAGE_PATH);
Wipe_Available_in_GUI = true;
-#ifndef RECOVERY_SDCARD_ON_DATA
- Setup_AndSec();
- Mount_Storage_Retry();
-#endif
}
#else
if (Mount_Point == "/emmc" || Mount_Point == "/internal_sd" || Mount_Point == "/internal_sdcard") {
Is_Storage = true;
Is_Settings_Storage = true;
Wipe_Available_in_GUI = true;
-#ifndef RECOVERY_SDCARD_ON_DATA
- Setup_AndSec();
- Mount_Storage_Retry();
-#endif
}
#endif
} else if (Is_Image(Fstab_File_System)) {
@@ -663,6 +651,7 @@ void TWPartition::Setup_AndSec(void) {
Backup_Path = Symlink_Mount_Point;
Make_Dir("/and-sec", true);
Recreate_AndSec_Folder();
+ Mount_Storage_Retry();
}
void TWPartition::Find_Real_Block_Device(string& Block, bool Display_Error) {
diff --git a/partitionmanager.cpp b/partitionmanager.cpp
index 091ae3288..04dbee967 100644
--- a/partitionmanager.cpp
+++ b/partitionmanager.cpp
@@ -96,6 +96,9 @@ int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error)
for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
if ((*iter)->Is_Storage) {
(*iter)->Is_Settings_Storage = true;
+#ifndef RECOVERY_SDCARD_ON_DATA
+ (*iter)->Setup_AndSec();
+#endif
Found_Settings_Storage = true;
DataManager::SetValue("tw_settings_path", (*iter)->Storage_Path);
DataManager::SetValue("tw_storage_path", (*iter)->Storage_Path);