summaryrefslogtreecommitdiffstats
path: root/usr.sbin/config/kernconf.tmpl
diff options
context:
space:
mode:
authorwkoszek <wkoszek@FreeBSD.org>2007-05-12 19:38:18 +0000
committerwkoszek <wkoszek@FreeBSD.org>2007-05-12 19:38:18 +0000
commit2e673327ec1ac7c1b4a99f2bfe326756e0547067 (patch)
tree7df0bae947c0e7aa57e02e7373440d236848d9d0 /usr.sbin/config/kernconf.tmpl
parenta0d76ca625afcd4dd4e8a520e6855ba3b9bc2c96 (diff)
downloadFreeBSD-src-2e673327ec1ac7c1b4a99f2bfe326756e0547067.zip
FreeBSD-src-2e673327ec1ac7c1b4a99f2bfe326756e0547067.tar.gz
Improve INCLUDE_CONFIG_FILE support.
This change will let us to have full configuration of a running kernel available in sysctl: sysctl -b kern.conftxt The same configuration is also contained within the kernel image. It can be obtained with: config -x <kernelfile> Current functionality lets you to quickly recover kernel configuration, by simply redirecting output from commands presented above and starting kernel build procedure. "include" statements are also honored, which means options and devices from included files are also included. Please note that comments from configuration files are not preserved by default. In order to preserve them, you can use -C flag for config(8). This will bring configuration file and included files literally; however, redirection to a file no longer works directly. This commit was followed by discussion, that took place on freebsd-current@. For more details, look here: http://lists.freebsd.org/pipermail/freebsd-current/2007-March/069994.html http://lists.freebsd.org/pipermail/freebsd-current/2007-May/071844.html Development of this patch took place in Perforce, hierarchy: //depot/user/wkoszek/wkoszek_kconftxt/ Support from: freebsd-current@ (links above) Reviewed by: imp@ Approved by: imp@
Diffstat (limited to 'usr.sbin/config/kernconf.tmpl')
-rw-r--r--usr.sbin/config/kernconf.tmpl17
1 files changed, 17 insertions, 0 deletions
diff --git a/usr.sbin/config/kernconf.tmpl b/usr.sbin/config/kernconf.tmpl
new file mode 100644
index 0000000..981efb7
--- /dev/null
+++ b/usr.sbin/config/kernconf.tmpl
@@ -0,0 +1,17 @@
+/*
+ * This file acts as a template for config.c that will be generated in the
+ * kernel build directory after config(8) has been successfully run.
+ *
+ * $FreeBSD$
+ */
+#include "opt_config.h"
+#ifdef INCLUDE_CONFIG_FILE
+
+const char kernconfstring[] __attribute__ ((section("kern_conf"))) =
+"%%KERNCONFFILE%%";
+
+#else
+
+const char kernconfstring[] = "\0";
+
+#endif /* INCLUDE_CONFIG_FILE */
OpenPOWER on IntegriCloud