diff options
author | Matt Mower <mowerm@gmail.com> | 2014-03-21 02:21:09 +0100 |
---|---|---|
committer | bigbiff bigbiff <bigbiff@teamw.in> | 2014-03-30 20:27:28 +0200 |
commit | f77994d270b475f2b7d824e98228c4cfb5bda906 (patch) | |
tree | 7274532553eb5ad20ceda077f299f9b323ece197 | |
parent | Re-arrange handling of settings storage partition (diff) | |
download | android_bootable_recovery-f77994d270b475f2b7d824e98228c4cfb5bda906.tar android_bootable_recovery-f77994d270b475f2b7d824e98228c4cfb5bda906.tar.gz android_bootable_recovery-f77994d270b475f2b7d824e98228c4cfb5bda906.tar.bz2 android_bootable_recovery-f77994d270b475f2b7d824e98228c4cfb5bda906.tar.lz android_bootable_recovery-f77994d270b475f2b7d824e98228c4cfb5bda906.tar.xz android_bootable_recovery-f77994d270b475f2b7d824e98228c4cfb5bda906.tar.zst android_bootable_recovery-f77994d270b475f2b7d824e98228c4cfb5bda906.zip |
Diffstat (limited to '')
-rw-r--r-- | partition.cpp | 2 | ||||
-rw-r--r-- | twrpDU.cpp | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/partition.cpp b/partition.cpp index 640a280ef..1ae54f57e 100644 --- a/partition.cpp +++ b/partition.cpp @@ -1822,9 +1822,7 @@ bool TWPartition::Update_Size(bool Display_Error) { if (Has_Data_Media) { if (Mount(Display_Error)) { unsigned long long data_media_used, actual_data; - du.add_relative_dir("media"); Used = du.Get_Folder_Size("/data"); - du.clear_relative_dir("media"); Backup_Size = Used; int bak = (int)(Used / 1048576LLU); int fre = (int)(Free / 1048576LLU); diff --git a/twrpDU.cpp b/twrpDU.cpp index d2345d768..28965e18b 100644 --- a/twrpDU.cpp +++ b/twrpDU.cpp @@ -38,6 +38,9 @@ twrpDU::twrpDU() { add_relative_dir(".."); add_relative_dir("lost+found"); add_absolute_dir("/data/data/com.google.android.music/files"); +#ifdef RECOVERY_SDCARD_ON_DATA + add_absolute_dir("/data/media"); +#endif parent = ""; } |