]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - linux/usb.c
Updated the windows Makefile to be compatible with both nmake and make
[proxmark3-svn] / linux / usb.c
index 8145b64af286216068c27908fba7fd0fcbf7c8e1..4f3b4e7e1f5bda0409b1409abea149a836e251db 100644 (file)
@@ -153,6 +153,13 @@ usb_dev_handle* OpenProxmark(int verbose) {
        if (!handle)
                return NULL;
 
+#ifndef __APPLE__
+       /* detach kernel driver first */
+       ret = usb_detach_kernel_driver_np(handle, iface);
+       /* don't complain if no driver attached */
+       if (ret<0 && ret != -61 && verbose)
+               fprintf(stderr, "detach kernel driver failed: (%d) %s!\n", ret, usb_strerror());
+#endif
        ret = usb_claim_interface(handle, iface);
        if (ret<0) {
                if (verbose)
Impressum, Datenschutz