diff options
author | c457 <android.c357@gmail.com> | 2016-09-22 18:49:34 -0500 |
---|---|---|
committer | c457 <android.c357@gmail.com> | 2016-09-22 18:53:16 -0500 |
commit | cc607cbac851847af5fdc0f67905b04906954fc4 (patch) | |
tree | af6bb2b105aa5896b5ba358b6abfe39146517acd | |
parent | b58cc75fe8243ca0319d6d6db27a750579e01433 (diff) | |
download | system_core-cc607cbac851847af5fdc0f67905b04906954fc4.zip system_core-cc607cbac851847af5fdc0f67905b04906954fc4.tar.gz system_core-cc607cbac851847af5fdc0f67905b04906954fc4.tar.bz2 |
fastboot: Add Alcatel's USB vendor id
Change-Id: Ic4f127c8dcd5db0c039491128862b791197f5c84
-rw-r--r-- | fastboot/fastboot.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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; |