summaryrefslogtreecommitdiffstats
path: root/adb_install.cpp
diff options
context:
space:
mode:
authorDees_Troy <dees_troy@teamw.in>2012-09-21 16:00:52 +0200
committerDees_Troy <dees_troy@teamw.in>2012-09-21 16:01:11 +0200
commite00c83aa1a825f73915ef6c8f42b329d4e9239ef (patch)
tree91a9e0b7b1f50a01629600d0468dd0278443c318 /adb_install.cpp
parentUpdate portrait themes with ADB sideload (diff)
downloadandroid_bootable_recovery-e00c83aa1a825f73915ef6c8f42b329d4e9239ef.tar
android_bootable_recovery-e00c83aa1a825f73915ef6c8f42b329d4e9239ef.tar.gz
android_bootable_recovery-e00c83aa1a825f73915ef6c8f42b329d4e9239ef.tar.bz2
android_bootable_recovery-e00c83aa1a825f73915ef6c8f42b329d4e9239ef.tar.lz
android_bootable_recovery-e00c83aa1a825f73915ef6c8f42b329d4e9239ef.tar.xz
android_bootable_recovery-e00c83aa1a825f73915ef6c8f42b329d4e9239ef.tar.zst
android_bootable_recovery-e00c83aa1a825f73915ef6c8f42b329d4e9239ef.zip
Diffstat (limited to 'adb_install.cpp')
-rw-r--r--adb_install.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/adb_install.cpp b/adb_install.cpp
index 3b64606d9..63eb967e1 100644
--- a/adb_install.cpp
+++ b/adb_install.cpp
@@ -43,14 +43,24 @@ static void
set_usb_driver(bool enabled) {
int fd = open("/sys/class/android_usb/android0/enable", O_WRONLY);
if (fd < 0) {
+/* These error messages show when built in older Android branches (e.g. Gingerbread)
+ It's not a critical error so we're disabling the error messages.
ui->Print("failed to open driver control: %s\n", strerror(errno));
+*/
+ LOGI("failed to open driver control: %s\n", strerror(errno));
return;
}
if (write(fd, enabled ? "1" : "0", 1) < 0) {
+/*
ui->Print("failed to set driver control: %s\n", strerror(errno));
+*/
+ LOGI("failed to set driver control: %s\n", strerror(errno));
}
if (close(fd) < 0) {
+/*
ui->Print("failed to close driver control: %s\n", strerror(errno));
+*/
+ LOGI("failed to close driver control: %s\n", strerror(errno));
}
}