Current-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: Kingston Data Traveler



On Fri, 23 Sep 2011, Thomas Mueller wrote:

> >From Iain Hibbert <plunky%rya-online.net@localhost>:
> >         usbconfig -u 0 -a 5 dump_device_desc
>
> I ran this command, and the result was; I didn't see any 0x1624, but
> this is FreeBSD, not NetBSD:
>
> ugen0.5: <DataTraveler 112 Kingston> at usbus0, cfg=0 md=HOST spd=HIGH 
> (480Mbps) pwr=ON
>
>   idVendor = 0x0930
>   idProduct = 0x6544

interestingly, this vendor is listed in NetBSD as Toshiba..  you could try
the patch below to see if it is affected by the same issue as other
Kingston drives..

iain

Index: umass_quirks.c
===================================================================
RCS file: /cvsroot/src/sys/dev/usb/umass_quirks.c,v
retrieving revision 1.89
diff -u -p -r1.89 umass_quirks.c
--- umass_quirks.c      19 Sep 2011 08:26:57 -0000      1.89
+++ umass_quirks.c      23 Sep 2011 09:16:06 -0000
@@ -274,6 +274,14 @@ Static const struct umass_quirk umass_qu
        },

        /* Kingston USB pendrives don't like being told to lock the door */
+       { { 0x0930, 0x6544 },
+         UMASS_WPROTO_UNSPEC, UMASS_CPROTO_UNSPEC,
+         0,
+         PQUIRK_NODOORLOCK,
+         UMATCH_VENDOR_PRODUCT,
+         NULL, NULL
+       },
+
        { { USB_VENDOR_KINGSTON, USB_PRODUCT_KINGSTON_DT101_II },
          UMASS_WPROTO_UNSPEC, UMASS_CPROTO_UNSPEC,
          0,


Home | Main Index | Thread Index | Old Index