From cc607cbac851847af5fdc0f67905b04906954fc4 Mon Sep 17 00:00:00 2001 From: c457 Date: Thu, 22 Sep 2016 18:49:34 -0500 Subject: fastboot: Add Alcatel's USB vendor id Change-Id: Ic4f127c8dcd5db0c039491128862b791197f5c84 --- fastboot/fastboot.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp index 6a2f10d..91152a4 100644 --- a/fastboot/fastboot.cpp +++ b/fastboot/fastboot.cpp @@ -209,7 +209,8 @@ int match_fastboot_with_serial(usb_ifc_info *info, const char *local_serial) (info->dev_vendor != 0x2b4c) && // Zuk (info->dev_vendor != 0x2a96) && // MMX (info->dev_vendor != 0x19d2) && // ZTE - (info->dev_vendor != 0x2c3f)) // Nextbit + (info->dev_vendor != 0x2c3f) && // Nextbit + (info->dev_vendor != 0x1bbb)) // Alcatel return -1; if(info->ifc_class != 0xff) return -1; if(info->ifc_subclass != 0x42) return -1; -- cgit v1.1