summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDees Troy <dees_troy@teamw.in>2014-01-21 15:58:42 +0100
committerGerrit Code Review <gerrit2@gerrit>2014-01-21 15:58:42 +0100
commita6a26429f6ee285fb2775dce37ef94339c00d9a2 (patch)
tree2ef5f92fdcf28f167c29bdfd783b0f34c63fe3ae
parentFix handling of storage after decryption (diff)
parentEnable UMS mounting of storage drives (diff)
downloadandroid_bootable_recovery-a6a26429f6ee285fb2775dce37ef94339c00d9a2.tar
android_bootable_recovery-a6a26429f6ee285fb2775dce37ef94339c00d9a2.tar.gz
android_bootable_recovery-a6a26429f6ee285fb2775dce37ef94339c00d9a2.tar.bz2
android_bootable_recovery-a6a26429f6ee285fb2775dce37ef94339c00d9a2.tar.lz
android_bootable_recovery-a6a26429f6ee285fb2775dce37ef94339c00d9a2.tar.xz
android_bootable_recovery-a6a26429f6ee285fb2775dce37ef94339c00d9a2.tar.zst
android_bootable_recovery-a6a26429f6ee285fb2775dce37ef94339c00d9a2.zip
-rw-r--r--etc/init.rc10
-rw-r--r--partitionmanager.cpp2
2 files changed, 12 insertions, 0 deletions
diff --git a/etc/init.rc b/etc/init.rc
index aeec483a3..8cff20ec6 100644
--- a/etc/init.rc
+++ b/etc/init.rc
@@ -41,6 +41,16 @@ on boot
on property:sys.powerctl=*
powerctl ${sys.powerctl}
+on property:sys.storage.ums_enabled=1
+ write /sys/class/android_usb/android0/enable 0
+ write /sys/class/android_usb/android0/functions adb,mass_storage
+ write /sys/class/android_usb/android0/enable 1
+
+on property:sys.storage.ums_enabled=0
+ write /sys/class/android_usb/android0/enable 0
+ write /sys/class/android_usb/android0/functions adb
+ write /sys/class/android_usb/android0/enable ${service.adb.root}
+
service ueventd /sbin/ueventd
critical
diff --git a/partitionmanager.cpp b/partitionmanager.cpp
index dbdbd0e11..a58900c6e 100644
--- a/partitionmanager.cpp
+++ b/partitionmanager.cpp
@@ -1519,6 +1519,7 @@ int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
return false;
}
+ property_set("sys.storage.ums_enabled", "1");
return true;
}
@@ -1579,6 +1580,7 @@ int TWPartitionManager::usb_storage_disable(void) {
Mount_All_Storage();
Update_System_Details();
UnMount_Main_Partitions();
+ property_set("sys.storage.ums_enabled", "0");
if (ret < 0 && index == 0) {
LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
return false;