svn commit: r361114 - head/libexec/rc/rc.d

Colin Percival cperciva at FreeBSD.org
Sat May 16 18:37:49 UTC 2020


Author: cperciva
Date: Sat May 16 18:37:48 2020
New Revision: 361114
URL: https://svnweb.freebsd.org/changeset/base/361114

Log:
  Move the devmatch rc.d script before netif in the boot process.
  
  Prior to this change, using lagg to aggregate wired and wireless networks
  was broken in the (relatively common) case where wifi drivers + firmware
  are loaded by devmatch, since the interface didn't exist at the time when
  the lagg interface was being created.
  
  Suggested by:	imp
  MFC after:	3 days

Modified:
  head/libexec/rc/rc.d/devmatch

Modified: head/libexec/rc/rc.d/devmatch
==============================================================================
--- head/libexec/rc/rc.d/devmatch	Sat May 16 17:05:44 2020	(r361113)
+++ head/libexec/rc/rc.d/devmatch	Sat May 16 18:37:48 2020	(r361114)
@@ -27,6 +27,7 @@
 #
 # PROVIDE: devmatch
 # REQUIRE: kldxref
+# BEFORE: netif
 # KEYWORD: nojail
 
 . /etc/rc.subr


More information about the svn-src-all mailing list