| #
44e1285c
|
| 21-Aug-2018 |
Brad Davis <brd@FreeBSD.org> |
Move all devd related configs to sbin/devd/
This helps with pkgbase as it switches these to using CONFS so they are properly tagged as config files.
Approved by: will (mentor), imp Differential Rev
Move all devd related configs to sbin/devd/
This helps with pkgbase as it switches these to using CONFS so they are properly tagged as config files.
Approved by: will (mentor), imp Differential Revision: https://reviews.freebsd.org/D16781
show more ...
|
| #
16169457
|
| 26-Jun-2011 |
Gavin Atkinson <gavin@FreeBSD.org> |
The SMCWUSBG is a zyd(4) device, not an uath(4) device. Remove from the latter.
It appears that the addition to uath(4) came in through PR kern/135009, which had tested another device, the SMCWUSBT
The SMCWUSBG is a zyd(4) device, not an uath(4) device. Remove from the latter.
It appears that the addition to uath(4) came in through PR kern/135009, which had tested another device, the SMCWUSBTG2, successfully with uath(4) and included the SMCWUSBG as it "has the same chipset". I can find no other evidence that these two do actually share the same chipset. Moreover, Linux treats the SMCWUSBG as a zyd(4) device also.
This reverts r223537.
Discussed with: hselasky, kevlo MFC after: 1 week
show more ...
|
| #
3acd904d
|
| 21-Apr-2010 |
Andrew Thompson <thompsa@FreeBSD.org> |
Change usb devd events from fake attach to a notify. The ugen device is not a proper device_t so it faked the devctl event to appear like one, this is now a notify which allows more information to be
Change usb devd events from fake attach to a notify. The ugen device is not a proper device_t so it faked the devctl event to appear like one, this is now a notify which allows more information to be passed.
We notify for both the device attach/detach and for each usb interface. A devd rule can now match on the interface properties, including composite devices which may have a uvideo interface and also usound and possibly uhid too.
An example to match a umass device with a scsi subclass and BBB protocol would be
notify 100 { match "system" "USB"; match "subsystem" "INTERFACE"; match "type" "ATTACH"; match "intclass" "0x08"; match "intsubclass" "0x06"; match "intprotocol" "0x50"; action ... };
The old attach devctl event has been retained for the moment to make merging to 8.1 easier. This was never compatible with 7.x or earlier due to the ugen regex change needed.
Reviewed by: warner MFC after: 1 week
show more ...
|