svn commit: r249783 - head/usr.sbin/bsdconfig/networking

Devin Teske dteske at FreeBSD.org
Tue Apr 23 00:10:34 UTC 2013


Author: dteske
Date: Tue Apr 23 00:10:33 2013
New Revision: 249783
URL: http://svnweb.freebsd.org/changeset/base/249783

Log:
  Prevent device.subr from auto-loading in the nameservers module.
  This module doesn't need device support (but device.subr is loaded
  indirectly through media/tcpip.subr which contains resolv stuff).

Modified:
  head/usr.sbin/bsdconfig/networking/nameservers

Modified: head/usr.sbin/bsdconfig/networking/nameservers
==============================================================================
--- head/usr.sbin/bsdconfig/networking/nameservers	Mon Apr 22 23:59:00 2013	(r249782)
+++ head/usr.sbin/bsdconfig/networking/nameservers	Tue Apr 23 00:10:33 2013	(r249783)
@@ -28,6 +28,9 @@
 #
 ############################################################ INCLUDES
 
+# Prevent device.subr (included indirectly) from auto scanning on load
+DEVICE_SELF_SCAN_ALL=NO
+
 BSDCFG_SHARE="/usr/share/bsdconfig"
 . $BSDCFG_SHARE/common.subr || exit 1
 f_dprintf "%s: loading includes..." "$0"


More information about the svn-src-head mailing list