summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_mib.c
diff options
context:
space:
mode:
authorwkoszek <wkoszek@FreeBSD.org>2007-05-16 16:08:04 +0000
committerwkoszek <wkoszek@FreeBSD.org>2007-05-16 16:08:04 +0000
commit04e8b672c852d872cc214c6745d7cddca1d5080c (patch)
tree03ff842bb083cfa0e60ff73df52ccd060a23abba /sys/kern/kern_mib.c
parent48978a06b6fe9452d50438ecc2208d7cc7815d93 (diff)
downloadFreeBSD-src-04e8b672c852d872cc214c6745d7cddca1d5080c.zip
FreeBSD-src-04e8b672c852d872cc214c6745d7cddca1d5080c.tar.gz
Handle !INCLUDE_CONFIG_FILE entirely in the kernel. This should make some
developers happy, since it will let them to use old config(8) with newer kernels. Reviewed by: imp Approved by: imp
Diffstat (limited to 'sys/kern/kern_mib.c')
-rw-r--r--sys/kern/kern_mib.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/kern/kern_mib.c b/sys/kern/kern_mib.c
index 2ccb207..c10e5f2 100644
--- a/sys/kern/kern_mib.c
+++ b/sys/kern/kern_mib.c
@@ -39,6 +39,7 @@
__FBSDID("$FreeBSD$");
#include "opt_posix.h"
+#include "opt_config.h"
#include <sys/param.h>
#include <sys/kernel.h>
@@ -296,8 +297,12 @@ SYSCTL_PROC(_kern, KERN_SECURELVL, securelevel,
CTLTYPE_INT|CTLFLAG_RW|CTLFLAG_PRISON, 0, 0, sysctl_kern_securelvl,
"I", "Current secure level");
+#ifdef INCLUDE_CONFIG_FILE
/* Actual kernel configuration options. */
extern char kernconfstring[];
+#else
+char kernconfstring[] = "\0";
+#endif
static int
sysctl_kern_config(SYSCTL_HANDLER_ARGS)
OpenPOWER on IntegriCloud