• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

system/corennnnn


Commit MetaInfo

Revision746f3243f6d30ab51a36dcfea76eac3ba29ac625 (tree)
Time2012-01-25 04:18:50
AuthorXavier Ducrohet <xav@andr...>
CommiterXavier Ducrohet

Log Message

Add USB vendor IDs for Quanta, INQ and Sony.

Change-Id: I224e067d9a64e8e9e7afbad0760a4b07f965bf83

Change Summary

Incremental Difference

--- a/adb/usb_vendors.c
+++ b/adb/usb_vendors.c
@@ -117,6 +117,12 @@
117117 #define VENDOR_ID_LUMIGON 0x25E3
118118 //Intel's USB Vendor ID
119119 #define VENDOR_ID_INTEL 0x8087
120+// Quanta's USB Vendor ID
121+#define VENDOR_ID_QUANTA 0x0408
122+// INQ Mobile's USB Vendor ID
123+#define VENDOR_ID_INQ_MOBILE 0x2314
124+// Sony's USB Vendor ID
125+#define VENDOR_ID_SONY 0x054C
120126
121127 /** built-in vendor list */
122128 int builtInVendorIds[] = {
@@ -161,6 +167,9 @@ int builtInVendorIds[] = {
161167 VENDOR_ID_FUJITSU,
162168 VENDOR_ID_LUMIGON,
163169 VENDOR_ID_INTEL,
170+ VENDOR_ID_QUANTA,
171+ VENDOR_ID_INQ_MOBILE,
172+ VENDOR_ID_SONY,
164173 };
165174
166175 #define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0]))
--- a/fastboot/fastboot.c
+++ b/fastboot/fastboot.c
@@ -157,6 +157,7 @@ int match_fastboot(usb_ifc_info *info)
157157 (info->dev_vendor != 0x22b8) && // Motorola
158158 (info->dev_vendor != 0x0955) && // Nvidia
159159 (info->dev_vendor != 0x413c) && // DELL
160+ (info->dev_vendor != 0x2314) && // INQ Mobile
160161 (info->dev_vendor != 0x0bb4)) // HTC
161162 return -1;
162163 if(info->ifc_class != 0xff) return -1;