diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c index 06f21dd68de4c088e35419a84ea655644ef98814..7ae637233a15078858474470c8cb4ef2d864a7a2 100644 --- a/adb/usb_vendors.c +++ b/adb/usb_vendors.c @@ -37,6 +37,8 @@ // Google's USB Vendor ID #define VENDOR_ID_GOOGLE 0x18d1 +// Intel's USB Vendor ID +#define VENDOR_ID_INTEL 0x8087 // HTC's USB Vendor ID #define VENDOR_ID_HTC 0x0bb4 // Samsung's USB Vendor ID @@ -116,6 +118,7 @@ /** built-in vendor list */ int builtInVendorIds[] = { VENDOR_ID_GOOGLE, + VENDOR_ID_INTEL, VENDOR_ID_HTC, VENDOR_ID_SAMSUNG, VENDOR_ID_MOTOROLA, diff --git a/fastboot/fastboot.c b/fastboot/fastboot.c index 4a2de2062e674c82b06bc4125b8012f92db20544..fe0af7ac94e049078c846c864cf84eb4c91c2ff8 100644 --- a/fastboot/fastboot.c +++ b/fastboot/fastboot.c @@ -150,6 +150,7 @@ int match_fastboot(usb_ifc_info *info) { if(!(vendor_id && (info->dev_vendor == vendor_id)) && (info->dev_vendor != 0x18d1) && // Google + (info->dev_vendor != 0x8087) && // Intel (info->dev_vendor != 0x0451) && (info->dev_vendor != 0x0502) && (info->dev_vendor != 0x0fce) && // Sony Ericsson