diff options
author | Ethan Yonker <dees_troy@teamw.in> | 2014-09-03 18:30:33 +0200 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2014-09-03 18:30:33 +0200 |
commit | 73da42cb6eb9f036140444758c35766c353ee65d (patch) | |
tree | dc859d03a2e9c59327202a62f00b1fabb33b4d1d | |
parent | Only use SELinux tools from toolbox if not in busybox (diff) | |
download | android_bootable_recovery-73da42cb6eb9f036140444758c35766c353ee65d.tar android_bootable_recovery-73da42cb6eb9f036140444758c35766c353ee65d.tar.gz android_bootable_recovery-73da42cb6eb9f036140444758c35766c353ee65d.tar.bz2 android_bootable_recovery-73da42cb6eb9f036140444758c35766c353ee65d.tar.lz android_bootable_recovery-73da42cb6eb9f036140444758c35766c353ee65d.tar.xz android_bootable_recovery-73da42cb6eb9f036140444758c35766c353ee65d.tar.zst android_bootable_recovery-73da42cb6eb9f036140444758c35766c353ee65d.zip |
Diffstat (limited to '')
-rw-r--r-- | twrp.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -270,6 +270,13 @@ int main(int argc, char **argv) { } // Read the settings file +#ifdef TW_HAS_MTP + // We unmount partitions sometimes during early boot which may override + // the default of MTP being enabled by auto toggling MTP off. This + // will force it back to enabled then get overridden by the settings + // file, assuming that an entry for tw_mtp_enabled is set. + DataManager::SetValue("tw_mtp_enabled", 1); +#endif DataManager::ReadSettingsFile(); // Fixup the RTC clock on devices which require it |