(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

_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Reply via email to