summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2018-09-10 00:23:25 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-09-10 00:23:25 +0200
commit1254e15e5013df9c62564b37ebb86f6e023e76ae (patch)
tree6317b863fe3e7cb8abd2b10f4ff48984dbe64208 /recovery.cpp
parentMerge "Remove res-560dpi symlink." (diff)
parentFix sideload for user devices by adding a new sideload config (diff)
downloadandroid_bootable_recovery-1254e15e5013df9c62564b37ebb86f6e023e76ae.tar
android_bootable_recovery-1254e15e5013df9c62564b37ebb86f6e023e76ae.tar.gz
android_bootable_recovery-1254e15e5013df9c62564b37ebb86f6e023e76ae.tar.bz2
android_bootable_recovery-1254e15e5013df9c62564b37ebb86f6e023e76ae.tar.lz
android_bootable_recovery-1254e15e5013df9c62564b37ebb86f6e023e76ae.tar.xz
android_bootable_recovery-1254e15e5013df9c62564b37ebb86f6e023e76ae.tar.zst
android_bootable_recovery-1254e15e5013df9c62564b37ebb86f6e023e76ae.zip
Diffstat (limited to '')
-rw-r--r--recovery.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 01bd83b5e..5934b61d7 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -286,6 +286,12 @@ static bool erase_volume(const char* volume) {
return (result == 0);
}
+// Sets the usb config to 'state'
+bool SetUsbConfig(const std::string& state) {
+ android::base::SetProperty("sys.usb.config", state);
+ return android::base::WaitForProperty("sys.usb.state", state);
+}
+
// Returns the selected filename, or an empty string.
static std::string browse_directory(const std::string& path, Device* device) {
ensure_path_mounted(path.c_str());