From 48aa5c52e330976db5c64e95880817dde647a32e Mon Sep 17 00:00:00 2001 From: Steve Kondik Date: Wed, 15 Oct 2014 02:02:33 -0700 Subject: fastboot: Add missing fastboot USB IDs Change-Id: I30e03d3ad7c56febb1751edb35d49ce5c5068ed2 --- fastboot/fastboot.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'fastboot') 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; -- cgit v1.1