Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Jun 2011 15:23:07 GMT
From:      Robert Millan <rmh@debian.org>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   misc/157903: automated kldload for USB class devices
Message-ID:  <201106151523.p5FFN73i075030@red.freebsd.org>
Resent-Message-ID: <201106151530.p5FFUAtf073858@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201106151523.p5FFN73i075030>