History log of /freebsd-9.3-release/etc/devd/
Revision Date Author Comments
267654 20-Jun-2014 gjb

Copy stable/9 to releng/9.3 as part of the 9.3-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


263165 14-Mar-2014 hselasky

MFC
Sync usb.conf file to head branch.


259599 19-Dec-2013 truckman

Regenerate after
r248085 (if_ipheth)
r247474, r250288 (uftdi)
r250842 (if_rum)
r244956, r255345 (ng_ubt)
r248085, r250847, r257042, r259457 (if_run)
r245727, r250845, r253292, r259593 (u3g)
r252444 (if_axe)


244817 29-Dec-2012 hselasky

MFC r241089, r243661 and r244252:

Regenerate usb.conf


240670 18-Sep-2012 hselasky

MFC r239056:
Regenerate usb.conf


236389 01-Jun-2012 hselasky

MFC r235725:
Update usb.conf.


233562 27-Mar-2012 hselasky

MFC r233111:
Regenerate usb.conf to use new -n option when doing kldload.


232677 08-Mar-2012 jhibbits

MFC r232177:

Add backlight control to ATI-graphics PowerBooks and iBooks.

Approved by: nwhitehorn (mentor)


231638 14-Feb-2012 hselasky

MFC r231575:
Update /etc/devd/usb.conf


230802 31-Jan-2012 jhibbits

MFC r230640:

Remove the notify match from a couple devd apple events, the events don't
include notify tags.

Approved by: nwhitehorn (mentor)


230788 30-Jan-2012 jhibbits

MFC r228270,228277:

Add a devd notification for closing/opening the lid on PowerBooks and iBooks.

Approved by: nwhitehorn (mentor)


230751 29-Jan-2012 jhibbits

MFC r226449:

Add support for special keys (volume/brightness/eject) on Apple laptops with
ADB keyboards.

Approved by: nwhitehorn (mentor)


227007 01-Nov-2011 hselasky

MFC r226903, r225777, r226221 and r226534:
Add some new USB device IDs and some USB device quirks.
Improve the USB mass storage auto quirk detection.

PR: usb/161798, usb/160911
Approved by: re (kib)


225736 23-Sep-2011 kensmith

Copy head to stable/9 as part of 9.0-RELEASE release cycle.

Approved by: re (implicit)


223604 27-Jun-2011 hselasky

Regenerate usb.conf after r223566.


223566 26-Jun-2011 gavin

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


223543 25-Jun-2011 hselasky

- Move bus_auto.conf back into /etc/devd/
- Rename bus_auto.conf into usb.conf

Requested by: imp @
MFC after: 14 days


223536 25-Jun-2011 hselasky

- Move auto-load devd config file into etc/defaults folder.
- Regenerate file after bugfix in the generator.

Suggested by: Jeremy Messenger
MFC after: 14 days


223521 24-Jun-2011 hselasky

- Export more USB device ID's.
- Update bus_auto.conf accordingly.

MFC after: 3 days


223519 24-Jun-2011 hselasky

- Add auto-load devd config file for USB kernel modules.

MFC after: 14 days


207020 21-Apr-2010 thompsa

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


202610 19-Jan-2010 weongyo

adds a hardware specific configuration file for uath(4).

Pointed by: sam
Reviewed by: imp, thompsa


187344 16-Jan-2009 sam

revert r187343


187343 16-Jan-2009 sam

add FCC4 SKU to expose Public Safety Band (PSB) frequencies; this is
modeled after the Atheros SKU of the same name


186432 23-Dec-2008 thompsa

Move another block of ASUS events to devd/asus.conf that were missed in r186249


186249 17-Dec-2008 thompsa

Add /etc/devd/ and move hardware specific configuration there. This makes it
easier to maintain custom rules for non-system things like ACPI hotkeys.

/etc/devd.conf is already set up to check this directory, no change needed there.