On Sat, Dec 01, 2001 at 12:13:30PM +0100, Patrik Sundberg wrote:
> On Sat, Dec 01, 2001 at 09:40:33AM +0100, Bernd Walter wrote:
> > On Thu, Nov 29, 2001 at 03:35:43PM -0800, Gregory Neil Shapiro wrote:
> > > ps> has anyone tested using a Archos 6000 (using a isd200 interface) with the
> > > ps> umass driver under freebsd?
> > > 
> > > Just bought one (the 20G version but same interface) this weekend and can
> > > verify that it does not work with -STABLE.  I also saw the Linux driver but
> > > I don't know the USB code at all.  Hopefully, a USB-knowledgeable developer
> > > will port it out of the kindness of his or her heart.

I'm not in the Linux world - is there a cvsweb access for this driver
available?

> > Does it get connectet to umass?
> > If yes and you see read errors this should be just another quirk
> > candidate.
> 
> i found a posting on the netbsd current mailinglist stating that with some
> minor modifications it sort of attached to the umass driver, but the author
> had no further success. the posting can be viewed at:
> http://www.geocrawler.com/archives/3/497/2001/7/100/6233506/

This means the drive is either not umass classed or uses an unsupported
subclass/protocol.

Can anyone with such a drive please mail the complete specification?
Apply the attached patch and mail the usbdevs -v output.

-- 
B.Walter              COSMO-Project         http://www.cosmo-project.de
[EMAIL PROTECTED]         Usergroup           [EMAIL PROTECTED]

Index: usr.sbin/usbdevs//usbdevs.c
===================================================================
RCS file: /vol/freebsd-cvs/src/usr.sbin/usbdevs/usbdevs.c,v
retrieving revision 1.5
diff -u -r1.5 usbdevs.c
--- usr.sbin/usbdevs//usbdevs.c 1999/11/23 01:16:10     1.5
+++ usr.sbin/usbdevs//usbdevs.c 2001/12/01 17:16:53
@@ -100,9 +100,10 @@
                        printf("unconfigured, ");
        }
        if (verbose) {
-               printf("%s(0x%04x), %s(0x%04x), rev 0x%04x",
+               printf("%s(0x%04x), %s(0x%04x), rev 0x%04x, class 0x%02x, subclass 
+0x%02x, protocol 0x%02x",
                        di.product, di.productNo,
-                       di.vendor, di.vendorNo, di.releaseNo);
+                       di.vendor, di.vendorNo, di.releaseNo,
+                       di.class, di.subclass, di.protocol);
        } else
                printf("%s, %s", di.product, di.vendor);
        printf("\n");

Reply via email to