Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Jun 2009 15:45:46 +0200 (CEST)
From:      Wojciech Puchar <wojtek@wojtek.tensor.gdynia.pl>
To:        jdbca@clix.pt
Cc:        freebsd-questions@freebsd.org
Subject:   Re: usb device not recognised
Message-ID:  <alpine.BSF.2.00.0906061542480.91744@wojtek.tensor.gdynia.pl>
In-Reply-To: <43161.1244293859@clix.pt>
References:  <43161.1244293859@clix.pt>

next in thread | previous in thread | raw e-mail | index | archive | help
> (probe0:umass-sim1:1:0:0): NOT READY asc:3a,0
> (probe0:umass-sim1:1:0:0): Medium not present
> (probe0:umass-sim1:1:0:0): Unretryable error
> da0 at umass-sim1 bus 1 target 0 lun 0
> da0: <Teclast Digital  Player 1.00> Removable Direct Access SCSI-0 device
> da0: 40.000MB/s transfers
> da0: 1900MB (3892224 512 byte sectors: 255H 63S/T 242C)
>
> but fails to create /dev/da0. Also, when it is plugged in, no other usb devices are recognised.

maybe:

#       define NO_TEST_UNIT_READY       0x0001


try:

editing /usr/src/sys/dev/usb/usbdevs

and add definition for your device.

you may use usbdevs -v command to look at numbers:

  port 2 addr 2: full speed, power 500 mA, config 1, HUAWEI Mobile(0x1001),
                                                                  ^^^^^^^
 								product
HUAWEI Technologies(0x12d1), rev 0.00
                     ^^^^^^
 			producer.


then edit umass.c and add new table entry like that:

         { USB_VENDOR_<YOURVENDOR>, USB_PRODUCT_<YOURPRODUCT>, RID_WILDCARD,
           UMASS_PROTO_SCSI | UMASS_PROTO_BBB,
           <YOURQUIRKS>
         },


then compile the kernel, or maybe just umass module if it's not in 
your kernel. then check




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?alpine.BSF.2.00.0906061542480.91744>