Date: Sat, 1 Dec 2001 18:22:57 +0100 From: Bernd Walter <ticso@cicely8.cicely.de> To: Patrik Sundberg <ps@radiac.mine.nu> Cc: Gregory Neil Shapiro <gshapiro@FreeBSD.ORG>, current@FreeBSD.ORG Subject: Re: Archos 6000 Message-ID: <20011201182257.A15267@cicely8.cicely.de> In-Reply-To: <20011201121330.A1112@radiac.mine.nu> References: <20011129211640.A21799@radiac.mine.nu> <15366.50767.413603.503866@horsey.gshapiro.net> <20011201094033.A10393@cicely8.cicely.de> <20011201121330.A1112@radiac.mine.nu>
next in thread | previous in thread | raw e-mail | index | archive | help
--ReaqsoxgOBHFXBhH Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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 ticso@cicely.de Usergroup info@cosmo-project.de --ReaqsoxgOBHFXBhH Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch 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"); --ReaqsoxgOBHFXBhH-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20011201182257.A15267>