Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Apr 2013 00:10:34 +0000 (UTC)
From:      Devin Teske <dteske@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r249783 - head/usr.sbin/bsdconfig/networking
Message-ID:  <201304230010.r3N0AYEn064957@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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"



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