From owner-freebsd-current@FreeBSD.ORG Sat Jan 24 15:35:57 2009 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E633B106566C for ; Sat, 24 Jan 2009 15:35:57 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe01.swip.net [212.247.154.1]) by mx1.freebsd.org (Postfix) with ESMTP id 7C53D8FC22 for ; Sat, 24 Jan 2009 15:35:57 +0000 (UTC) (envelope-from hselasky@c2i.net) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.0 c=1 a=neEVqQTEdNsA:10 a=6I5d2MoRAAAA:8 a=E19gfujHKhs_ZpDzFHwA:9 a=iAPsMpTBKfDEp-iFg_zStWNXLwgA:4 a=LY0hPdMaydYA:10 Received: from [85.19.218.115] (account mc467741@c2i.net HELO [10.37.1.92]) by mailfe01.swip.net (CommuniGate Pro SMTP 5.2.6) with ESMTPA id 134476272; Sat, 24 Jan 2009 16:35:55 +0100 From: Hans Petter Selasky To: freebsd-current@freebsd.org Date: Sat, 24 Jan 2009 16:38:17 +0100 User-Agent: KMail/1.9.7 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200901241638.18591.hselasky@c2i.net> Cc: Carlos Corona Subject: Re: Prblem whit USB in FreeBSD 8 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jan 2009 15:35:58 -0000 On Saturday 24 January 2009, Carlos Corona wrote: > Hi * > > I'm running FreeBSD 8 i386 on my machine X2 AMD Athlon 64, I have devices > such as USB keyboard and mouse, which works perfectly, but as to the > pendrive, I had some problems when I connect my pendrive Fujitel for 1GB > recognizes this, but will not let me do anything, I can open applications, > etc. loggin a console, I managed to do the dmesg when connecting: > > (da0: UMass-sim0: 0:0:0): lost device > (da0: UMass-sim0: 0:0:0): Synchronize cache failed, status == 0x39, scsi > status == 0x0 > (da0: UMass-sim0: 0:0:0): removing device entry > GEOM_LABEL: Label msdosfs / [you: Qiufo] removed. > umass0: detached > > Can onlydisconnect hold back my system, any thoughts on this? thanks in > advance Hi, Most likely The firmware on your pendrive is not fully SCSI compliant. Read: http://wiki.freebsd.org/USB and the section about adding an USB Mass Storage Quirk. You need to add something like this to "sys/dev/usb2/storage/umass2.c" : {USB_VENDOR_MEIZU, USB_PRODUCT_MEIZU_M6_SL, RID_WILDCARD, UMASS_PROTO_SCSI | UMASS_PROTO_BBB, NO_INQUIRY | NO_SYNCHRONIZE_CACHE }, --HPS