diff options
author | Dees_Troy <dees_troy@teamw.in> | 2012-09-26 15:49:14 +0200 |
---|---|---|
committer | Dees_Troy <dees_troy@teamw.in> | 2012-09-26 15:50:10 +0200 |
commit | 7c2dec8020f592fac48fea370e06f6bfd00e2798 (patch) | |
tree | ccbc8bcb44eaf4c8847d4bfcbca344609261f19b /partitions.hpp | |
parent | Convert makelist to C++ (diff) | |
download | android_bootable_recovery-7c2dec8020f592fac48fea370e06f6bfd00e2798.tar android_bootable_recovery-7c2dec8020f592fac48fea370e06f6bfd00e2798.tar.gz android_bootable_recovery-7c2dec8020f592fac48fea370e06f6bfd00e2798.tar.bz2 android_bootable_recovery-7c2dec8020f592fac48fea370e06f6bfd00e2798.tar.lz android_bootable_recovery-7c2dec8020f592fac48fea370e06f6bfd00e2798.tar.xz android_bootable_recovery-7c2dec8020f592fac48fea370e06f6bfd00e2798.tar.zst android_bootable_recovery-7c2dec8020f592fac48fea370e06f6bfd00e2798.zip |
Diffstat (limited to '')
-rw-r--r-- | partitions.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/partitions.hpp b/partitions.hpp index c04f0cff9..5bd1197cc 100644 --- a/partitions.hpp +++ b/partitions.hpp @@ -61,6 +61,10 @@ public: virtual bool Update_Size(bool Display_Error); // Updates size information virtual void Recreate_Media_Folder(); // Recreates the /data/media folder +public: + string Current_File_System; // Current file system + string Actual_Block_Device; // Actual block device (one of primary, alternate, or decrypted) + protected: bool Process_Fstab_Line(string Line, bool Display_Error); // Processes a fstab line void Find_Actual_Block_Device(); // Determines the correct block device and stores it in Actual_Block_Device @@ -77,7 +81,6 @@ protected: string Symlink_Mount_Point; // /sdcard could be the symlink mount point for /data/media string Mount_Point; // Mount point for this partition (e.g. /system or /data) string Backup_Path; // Path for backup - string Actual_Block_Device; // Actual block device (one of primary, alternate, or decrypted) string Primary_Block_Device; // Block device (e.g. /dev/block/mmcblk1p1) string Alternate_Block_Device; // Alternate block device (e.g. /dev/block/mmcblk1) string Decrypted_Block_Device; // Decrypted block device available after decryption @@ -100,7 +103,6 @@ protected: bool Has_Android_Secure; // Indicates the presence of .android_secure on this partition bool Is_Storage; // Indicates if this partition is used for storage for backup, restore, and installing zips string Storage_Path; // Indicates the path to the storage -- root indicates mount point, media/ indicates e.g. /data/media - string Current_File_System; // Current file system string Fstab_File_System; // File system from the recovery.fstab int Format_Block_Size; // Block size for formatting |