svn commit: r313276 - head/etc
Ngie Cooper
ngie at FreeBSD.org
Sun Feb 5 08:24:38 UTC 2017
Author: ngie
Date: Sun Feb 5 08:24:37 2017
New Revision: 313276
URL: https://svnweb.freebsd.org/changeset/base/313276
Log:
Use kldload -n when loading if_deqna
This fixes if_deqna from being loaded by accident twice if it's already loaded
in the kernel.
MFC after: 1 week
Sponsored by: Dell EMC Isilon
Modified:
head/etc/devd.conf
Modified: head/etc/devd.conf
==============================================================================
--- head/etc/devd.conf Sun Feb 5 08:04:11 2017 (r313275)
+++ head/etc/devd.conf Sun Feb 5 08:24:37 2017 (r313276)
@@ -272,7 +272,7 @@ nomatch 10 {
match "bus" "pccard[0-9]+";
match "manufacturer" "0x1234";
match "product" "0x2323";
- action "kldload if_deqna";
+ action "kldload -n if_deqna";
};
attach 10 {
device-name "deqna[0-9]+";
More information about the svn-src-head
mailing list