summaryrefslogtreecommitdiffstats
path: root/minadbd/adb.c
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2014-03-11 19:08:39 +0100
committerAndroid Git Automerger <android-git-automerger@android.com>2014-03-11 19:08:39 +0100
commitbe7eea0a880ed266bb4111dcc3a2159fdb8791d5 (patch)
tree2e5dfbabedee882fb5829f32edd66921d88ff531 /minadbd/adb.c
parentam ac189bf6: Merge "recovery: Fix adb with linux 3.10" (diff)
parentMerge "ADB sideload command not work" (diff)
downloadandroid_bootable_recovery-be7eea0a880ed266bb4111dcc3a2159fdb8791d5.tar
android_bootable_recovery-be7eea0a880ed266bb4111dcc3a2159fdb8791d5.tar.gz
android_bootable_recovery-be7eea0a880ed266bb4111dcc3a2159fdb8791d5.tar.bz2
android_bootable_recovery-be7eea0a880ed266bb4111dcc3a2159fdb8791d5.tar.lz
android_bootable_recovery-be7eea0a880ed266bb4111dcc3a2159fdb8791d5.tar.xz
android_bootable_recovery-be7eea0a880ed266bb4111dcc3a2159fdb8791d5.tar.zst
android_bootable_recovery-be7eea0a880ed266bb4111dcc3a2159fdb8791d5.zip
Diffstat (limited to 'minadbd/adb.c')
-rw-r--r--minadbd/adb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/minadbd/adb.c b/minadbd/adb.c
index 948f4b755..7291b4bd5 100644
--- a/minadbd/adb.c
+++ b/minadbd/adb.c
@@ -387,7 +387,7 @@ int adb_main()
init_transport_registration();
// The minimal version of adbd only uses USB.
- if (access("/dev/android_adb", F_OK) == 0) {
+ if (access(USB_ADB_PATH, F_OK) == 0 || access(USB_FFS_ADB_EP0, F_OK) == 0) {
// listen on USB
usb_init();
}