misc/157903: automated kldload for USB class devices

Robert Millan rmh at debian.org
Wed Jun 15 15:30:11 UTC 2011


>Number:         157903
>Category:       misc
>Synopsis:       automated kldload for USB class devices
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jun 15 15:30:10 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator:     Robert Millan
>Release:        Debian GNU/kFreeBSD "sid"
>Organization:
>Environment:
>Description:
This simple file enables support in devd for automated kldload of the following drivers when an USB class device is inserted:

snd_uaudio
ulpt
umass

Please consider including it with /etc/devd/

>How-To-Repeat:

>Fix:


Patch attached with submission follows:

nomatch 10 {
	match "bus" "uhub[0-9]+";
	match "intclass" "0x01";
	action "kldload snd_uaudio";
};

nomatch 10 {
	match "bus" "uhub[0-9]+";
	match "intclass" "0x07";
	action "kldload ulpt";
};

nomatch 10 {
	match "bus" "uhub[0-9]+";
	match "intclass" "0x08";
	action "kldload umass";
};


>Release-Note:
>Audit-Trail:
>Unformatted:


More information about the freebsd-bugs mailing list