diff options
author | Steve Kondik <shade@chemlab.org> | 2014-10-15 02:02:33 -0700 |
---|---|---|
committer | Steve Kondik <steve@cyngn.com> | 2015-10-29 22:21:31 -0700 |
commit | 48aa5c52e330976db5c64e95880817dde647a32e (patch) | |
tree | dc16dc7aa166562f2960576cc165c604435e5828 /fastboot | |
parent | 19e0a6639aea559714db5f7763650bd9c36721c1 (diff) | |
download | system_core-48aa5c52e330976db5c64e95880817dde647a32e.zip system_core-48aa5c52e330976db5c64e95880817dde647a32e.tar.gz system_core-48aa5c52e330976db5c64e95880817dde647a32e.tar.bz2 |
fastboot: Add missing fastboot USB IDs
Change-Id: I30e03d3ad7c56febb1751edb35d49ce5c5068ed2
Diffstat (limited to 'fastboot')
-rw-r--r-- | fastboot/fastboot.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp index be80cce..4730d70 100644 --- a/fastboot/fastboot.cpp +++ b/fastboot/fastboot.cpp @@ -203,7 +203,10 @@ int match_fastboot_with_serial(usb_ifc_info *info, const char *local_serial) (info->dev_vendor != 0x413c) && // DELL (info->dev_vendor != 0x2314) && // INQ Mobile (info->dev_vendor != 0x0b05) && // Asus - (info->dev_vendor != 0x0bb4)) // HTC + (info->dev_vendor != 0x0bb4) && // HTC + (info->dev_vendor != 0x0421) && // Nokia + (info->dev_vendor != 0x1ebf) && // Coolpad + (info->dev_vendor != 0x2a96)) // MMX return -1; if(info->ifc_class != 0xff) return -1; if(info->ifc_subclass != 0x42) return -1; |