summaryrefslogtreecommitdiffstats
path: root/minadbd/adb.c
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2014-02-26 23:17:57 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-02-26 23:17:57 +0100
commit2f173bde6584f4c560ecc3f13f6e890f52815050 (patch)
treec2f6afc37a7cd65c411a6ccaf1eadbd8377ff262 /minadbd/adb.c
parentMerge "recovery: Fix adb with linux 3.10" (diff)
parentADB sideload command not work (diff)
downloadandroid_bootable_recovery-2f173bde6584f4c560ecc3f13f6e890f52815050.tar
android_bootable_recovery-2f173bde6584f4c560ecc3f13f6e890f52815050.tar.gz
android_bootable_recovery-2f173bde6584f4c560ecc3f13f6e890f52815050.tar.bz2
android_bootable_recovery-2f173bde6584f4c560ecc3f13f6e890f52815050.tar.lz
android_bootable_recovery-2f173bde6584f4c560ecc3f13f6e890f52815050.tar.xz
android_bootable_recovery-2f173bde6584f4c560ecc3f13f6e890f52815050.tar.zst
android_bootable_recovery-2f173bde6584f4c560ecc3f13f6e890f52815050.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();
}