From owner-freebsd-current Sat Dec 1 9:23:39 2001 Delivered-To: freebsd-current@freebsd.org Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by hub.freebsd.org (Postfix) with ESMTP id DFC3437B416; Sat, 1 Dec 2001 09:23:33 -0800 (PST) Received: (from uucp@localhost) by srv1.cosmo-project.de (8.11.0/8.11.0) with UUCP id fB1HNNj09109; Sat, 1 Dec 2001 18:23:23 +0100 (CET) Received: from mail.cicely.de (cicely20.cicely.de [10.1.1.22]) by cicely5.cicely.de (8.12.1/8.12.1) with ESMTP id fB1HNAAD099668; Sat, 1 Dec 2001 18:23:10 +0100 (CET)?g (envelope-from ticso@cicely8.cicely.de) Received: from cicely8.cicely.de (cicely8.cicely.de [10.1.2.10]) by mail.cicely.de (8.11.0/8.11.0) with ESMTP id fB1HN9L11475; Sat, 1 Dec 2001 18:23:10 +0100 (CET) Received: (from ticso@localhost) by cicely8.cicely.de (8.11.4/8.11.4) id fB1HMx016440; Sat, 1 Dec 2001 18:23:00 +0100 (CET) (envelope-from ticso) Date: Sat, 1 Dec 2001 18:22:57 +0100 From: Bernd Walter To: Patrik Sundberg Cc: Gregory Neil Shapiro , current@FreeBSD.ORG Subject: Re: Archos 6000 Message-ID: <20011201182257.A15267@cicely8.cicely.de> References: <20011129211640.A21799@radiac.mine.nu> <15366.50767.413603.503866@horsey.gshapiro.net> <20011201094033.A10393@cicely8.cicely.de> <20011201121330.A1112@radiac.mine.nu> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="ReaqsoxgOBHFXBhH" Content-Disposition: inline In-Reply-To: <20011201121330.A1112@radiac.mine.nu> User-Agent: Mutt/1.3.23i X-Operating-System: FreeBSD cicely8.cicely.de 5.0-CURRENT i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --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