summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEthan Yonker <dees_troy@teamw.in>2014-11-19 23:14:55 +0100
committerEthan Yonker <dees_troy@teamw.in>2014-11-19 23:15:21 +0100
commit2b556013bf0fbd08f1848fd0d32259dc1503e20c (patch)
treebffa273cee385c04df3b21e80b9fa689c7cc84e8
parentAdd flag for including additional files built from source in TWRP (diff)
downloadandroid_bootable_recovery-2b556013bf0fbd08f1848fd0d32259dc1503e20c.tar
android_bootable_recovery-2b556013bf0fbd08f1848fd0d32259dc1503e20c.tar.gz
android_bootable_recovery-2b556013bf0fbd08f1848fd0d32259dc1503e20c.tar.bz2
android_bootable_recovery-2b556013bf0fbd08f1848fd0d32259dc1503e20c.tar.lz
android_bootable_recovery-2b556013bf0fbd08f1848fd0d32259dc1503e20c.tar.xz
android_bootable_recovery-2b556013bf0fbd08f1848fd0d32259dc1503e20c.tar.zst
android_bootable_recovery-2b556013bf0fbd08f1848fd0d32259dc1503e20c.zip
-rw-r--r--partitionmanager.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/partitionmanager.cpp b/partitionmanager.cpp
index f75fcbc51..d363fbfc6 100644
--- a/partitionmanager.cpp
+++ b/partitionmanager.cpp
@@ -1395,6 +1395,7 @@ int TWPartitionManager::Decrypt_Device(string Password) {
strcpy(cPassword, Password.c_str());
#ifdef TW_INCLUDE_L_CRYPTO
Mount_By_Path("/vendor", false); // if exists, mount vendor partition as we may need some proprietary files
+ Mount_By_Path("/firmware", false); // if exists, mount firmware partition as we may need some proprietary files
#endif
int pwret = cryptfs_check_passwd(cPassword);