History log of /freebsd-10.0-release/etc/devd/
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
259065 07-Dec-2013 gjb

- Copy stable/10 (r259064) to releng/10.0 as part of the
10.0-RELEASE cycle.
- Update __FreeBSD_version [1]
- Set branch name to -RC1

[1] 10.0-CURRENT __FreeBSD_version value ended at '55', so
start releng/10.0 at '100' so the branch is started with
a value ending in zero.

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

256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

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


255124 01-Sep-2013 ian

Regenerate after recent addition of FTDI and bluetooth device IDs.


253936 04-Aug-2013 rpaulo

Regen for if_rsu.


253672 26-Jul-2013 hselasky

Regenerate usb.conf

MFC after: 1 week


252200 25-Jun-2013 kevlo

Regenerate usb.conf after r252196.

Spotted by: rpaulo


251597 10-Jun-2013 rpaulo

Regen.


249210 06-Apr-2013 hselasky

Regenerate usb.conf

MFC after: 1 week


244252 15-Dec-2012 hselasky

Regenerate usb.conf

MFC after: 1 week


243661 28-Nov-2012 hselasky

Regenerate usb.conf

MFC after: 1 week


241089 01-Oct-2012 hselasky

Regenerate usb.conf

MFC after: 1 week


239056 05-Aug-2012 hselasky

Regenerate usb.conf

MFC after: 2 weeks


235725 21-May-2012 hselasky

Regenerate usb.conf

MFC after: 3 days


233111 18-Mar-2012 hselasky

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

MFC after: 1 week


232177 26-Feb-2012 jhibbits

Add backlight control to ATI-graphics PowerBooks and iBooks.

Approved by: nwhitehorn (mentor)
MFC after: 1 week


231575 13-Feb-2012 hselasky

Re-generate /etc/devd/usb.conf

MFC after: 1 day


230640 28-Jan-2012 jhibbits

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

Approved by: nwhitehorn (mentor)
MFC after: 3 days


228277 05-Dec-2011 jhibbits

Fix style(9) issues from r228270.

Approved by: nwhitehorn (mentor)


228270 05-Dec-2011 jhibbits

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

Approved by: nwhitehorn (mentor)


226534 19-Oct-2011 hselasky

Add new USB IDs to RUN driver. Update usb.conf.

PR: usb/161798
MFC after: 3 days


226449 16-Oct-2011 nwhitehorn

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

Submitted by: Justin Hibbits <jrh29 at alumni dot cwru dot edu>
MFC after: 9.0-RELEASE


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.