Date: Thu, 9 Jul 2009 18:59:27 +0200 From: Roland Smith <rsmith@xs4all.nl> To: Sagara Wijetunga <sagara@tomahawk.com.sg> Cc: freebsd-questions@freebsd.org Subject: Re: Why this flash drive not detected in devd? Message-ID: <20090709165927.GB63043@slackbox.xs4all.nl> In-Reply-To: <4A560B28.6080705@tomahawk.com.sg> References: <4A560B28.6080705@tomahawk.com.sg>
next in thread | previous in thread | raw e-mail | index | archive | help
--LpQ9ahxlCli8rRTG Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jul 09, 2009 at 11:22:16PM +0800, Sagara Wijetunga wrote: > Hi FreeBSD community >=20 > This is FreeBSD 7.2 on i386. >=20 > sysctl -a | grep dev.umass > dev.umass.1.%desc: Imation Flash Drive, class 0/0, rev 2.00/1.03, addr 3 > dev.umass.1.%driver: umass > dev.umass.1.%location: port=3D6 interface=3D0 > dev.umass.1.%pnpinfo: vendor=3D0x0718 product=3D0x0081 devclass=3D0x00=20 > devsubclass=3D0x00 release=3D0x0103 sernum=3D"14925B00" intclass=3D0x08= =20 > intsubclass=3D0x06 > dev.umass.1.%parent: uhub4 >=20 > Following added to /etc/devd.conf: > # Imation Flash Drive, class 0/0, rev 2.00/1.03, addr 3 > attach 200 { > match "vendor" "0x0718"; > match "product" "0x0081"; > match "serial" "14925B00"; > action "touch /tmp/Imation-Flash-Drive-detected"; > }; >=20 >=20 > Could I know why the flash drive is not detected on attach? The USB subsystem isn't currently equipped to notify devd (technically, the devctl_notify function isn't used in the USB stack). So the only notification you'll get is when devfs creates a device. Since there is no predictable link between a USB device and a disk device, info from the USB stack would be less then usefull. You can check this by reading from /dev/devctrl (when devd is not running, since this device can only be opened by one program at a time) just after you plugged in the device. For my usb thumbdrive I get: cat /dev/devctl !system=3DDEVFS subsystem=3DCDEV type=3DCREATE cdev=3Dpass2 !system=3DDEVFS subsystem=3DCDEV type=3DCREATE cdev=3Dda0 !system=3DDEVFS subsystem=3DCDEV type=3DCREATE cdev=3Dda0s1 !system=3DDEVFS subsystem=3DCDEV type=3DCREATE cdev=3Dmsdosfs/RFS1 While sysctl gives: dev.umass.0.%desc: vendor 0x3538 USB Mass Storage Device, class 0/0, rev 2.= 00/1.00, addr 2 dev.umass.0.%driver: umass dev.umass.0.%location: port=3D4 interface=3D0 dev.umass.0.%pnpinfo: vendor=3D0x3538 product=3D0x0042 devclass=3D0x00 devs= ubclass=3D0x00 release=3D0x0100 sernum=3D"000000000004E1" intclass=3D0x08 i= ntsubclass=3D0x06 dev.umass.0.%parent: uhub4 So for now, you'll have to match on the creation of da* devices, or labels if you use those. Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --LpQ9ahxlCli8rRTG Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.12 (FreeBSD) iEYEARECAAYFAkpWIe8ACgkQEnfvsMMhpyXxYgCeJaaTQ9WXOVIfKw4MJtl9ApSs tO4An0hdlN/Yrm95Jk5RKp47eMIoR+uq =QTJp -----END PGP SIGNATURE----- --LpQ9ahxlCli8rRTG--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20090709165927.GB63043>