svn commit: r227151 - in head/sys: conf kern

Max Khon fjoe at FreeBSD.org
Sun Nov 6 08:10:42 UTC 2011


Author: fjoe
Date: Sun Nov  6 08:10:41 2011
New Revision: 227151
URL: http://svn.freebsd.org/changeset/base/227151

Log:
  Add KLD_DEBUG option.

Modified:
  head/sys/conf/options
  head/sys/kern/kern_linker.c

Modified: head/sys/conf/options
==============================================================================
--- head/sys/conf/options	Sun Nov  6 08:03:33 2011	(r227150)
+++ head/sys/conf/options	Sun Nov  6 08:10:41 2011	(r227151)
@@ -59,6 +59,7 @@ GDB
 KDB		opt_global.h
 KDB_TRACE	opt_kdb.h
 KDB_UNATTENDED	opt_kdb.h
+KLD_DEBUG	opt_kld.h
 SYSCTL_DEBUG	opt_sysctl.h
 
 # Miscellaneous options.

Modified: head/sys/kern/kern_linker.c
==============================================================================
--- head/sys/kern/kern_linker.c	Sun Nov  6 08:03:33 2011	(r227150)
+++ head/sys/kern/kern_linker.c	Sun Nov  6 08:10:41 2011	(r227151)
@@ -28,6 +28,7 @@
 __FBSDID("$FreeBSD$");
 
 #include "opt_ddb.h"
+#include "opt_kld.h"
 #include "opt_hwpmc_hooks.h"
 
 #include <sys/param.h>


More information about the svn-src-head mailing list