Ich habe eine Lösung.
Ich habe die Datei android_winusb.inf aktualisiert , um die VID und PID des Nexus-5 wiederzugeben . Jetzt lädt es den generischen Treiber und unterstützt ADB in Eclipse.
Beachten Sie, dass Sie nach früheren Versuchen zum Geräte-Manager gehen und den Treiber für das "Nexus 5" aktualisieren (mit einem gelben Ausrufezeichen).
Sie müssen zu dem USB -Treiberverzeichnis navigieren , das sich auf meinem Computer wie folgt befand:
C: \ Benutzer \ Xxxxxxxxx \ android-sdk \ extras \ google \ usa_driver
Bearbeiten Sie in diesem Verzeichnis die Datei android_winusb.inf in den Abschnitten x86 und amd64 und fügen Sie eine Zeile ein:
%CompositeAdbInterface% = USB_Install, USB\VID_18D1&PID_4EE1&MI_01
Das war genug für mich, um das zum Laufen zu bringen.
Hier ist der Inhalt meiner Datei:
;
; Android WinUsb driver installation.
;
;
;
; Includes FIX for the Nexus-5 ADB,
; --- jonovos ---
; --- petuniaPlatypus ---
; --- 2013-11-07 ---
;
; By snooping on the USB for the Nexus-5,
; it is known that the VID = 18D1 and PID = 4EE1.
; With this, we insert them into the GENERIC sections bwlow.
;
;
[Version]
Signature = "$Windows NT$"
Class = AndroidUsbDeviceClass
ClassGuid = {3F966BD9-FA04-4ec5-991C-D326973B5128}
Provider =
DriverVer = 07/09/2013,8.0.0000.00000
CatalogFile.NTx86 = androidwinusb86.cat
CatalogFile.NTamd64 = androidwinusba64.cat
[ClassInstall32]
Addreg = AndroidWinUsbClassReg
[AndroidWinUsbClassReg]
HKR,,,0,
HKR,,Icon,,-1
[Manufacturer]
[Google.NTx86]
;Google Nexus One
;Google Nexus S
;Google Nexus 7
;Google Nexus Q
;Google Nexus (generic)
;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-new-line-added:
;;;;;;;;
[Google.NTamd64]
;Google Nexus One
;Google Nexus S
;Google Nexus 7
;Google Nexus Q
;Google Nexus (generic)
;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-new-line-added:
;;;;;;;;
[USB_Install]
Include = winusb.inf
Needs = WINUSB.NT
[USB_Install.Services]
Include = winusb.inf
AddService = WinUSB,0x00000002,WinUSB_ServiceInstall
[WinUSB_ServiceInstall]
DisplayName =
ServiceType = 1
StartType = 3
ErrorControl = 1
ServiceBinary =
[USB_Install.Wdf]
KmdfService = WINUSB, WinUSB_Install
[WinUSB_Install]
KmdfLibraryVersion = 1.9
[USB_Install.HW]
AddReg = Dev_AddReg
[Dev_AddReg]
HKR,,DeviceInterfaceGUIDs,0x10000,"{F72FE0D4-CBCB-407d-8814-9ED673D0DD6B}"
[USB_Install.CoInstallers]
AddReg = CoInstallers_AddReg
CopyFiles = CoInstallers_CopyFiles
[CoInstallers_AddReg]
HKR,,CoInstallers32,0x00010000,"WdfCoInstaller01009.dll,WdfCoInstaller","WinUSBCoInstaller2.dll"
[CoInstallers_CopyFiles]
WinUSBCoInstaller2.dll
WdfCoInstaller01009.dll
[DestinationDirs]
CoInstallers_CopyFiles=11
[SourceDisksNames]
1 =
2 =
[SourceDisksFiles.x86]
WinUSBCoInstaller2.dll = 1
WdfCoInstaller01009.dll = 1
[SourceDisksFiles.amd64]
WinUSBCoInstaller2.dll = 2
WdfCoInstaller01009.dll = 2
[Strings]
ProviderName = "Google, Inc."
SingleAdbInterface = "Android ADB Interface"
CompositeAdbInterface = "Android Composite ADB Interface"
SingleBootLoaderInterface = "Android Bootloader Interface"
WinUSB_SvcDesc = "Android USB Driver"
DISK_NAME = "Android WinUsb installation disk"
ClassName = "Android Device"