svn commit: r200597 - in head/share/man: man5 man7

Warner Losh imp at FreeBSD.org
Tue Dec 15 19:25:43 PST 2009


Author: imp
Date: Wed Dec 16 03:25:43 2009
New Revision: 200597
URL: http://svn.freebsd.org/changeset/base/200597

Log:
  Docmuent NO_KERNEL{CLEAN,CONFIG,DEPEND,OBJ} as necessary.  Update
  documentation on KERNFAST meaning.

Modified:
  head/share/man/man5/make.conf.5
  head/share/man/man7/build.7

Modified: head/share/man/man5/make.conf.5
==============================================================================
--- head/share/man/man5/make.conf.5	Wed Dec 16 02:54:34 2009	(r200596)
+++ head/share/man/man5/make.conf.5	Wed Dec 16 03:25:43 2009	(r200597)
@@ -369,6 +369,12 @@ It defaults to
 .It Va MODULES_OVERRIDE
 .Pq Vt str
 Set to a list of modules to build instead of all of them.
+.It Va NO_KERNELCLEAN
+.Pq Vt bool
+Set this to skip running
+.Dq Li "${MAKE} clean"
+during
+.Dq Li "${MAKE} buildkernel" .
 .It Va NO_KERNELCONFIG
 .Pq Vt bool
 Set this to skip running
@@ -381,6 +387,12 @@ Set this to skip running
 .Dq Li "${MAKE} depend"
 during
 .Dq Li "${MAKE} buildkernel" .
+.It Va NO_KERNELOBJ
+.Pq Vt bool
+Set this to skip running
+.Dq Li "${MAKE} obj"
+during
+.Dq Li "${MAKE} buildkernel" .
 .It Va NO_MODULES
 .Pq Vt bool
 Set to not build modules with the kernel.

Modified: head/share/man/man7/build.7
==============================================================================
--- head/share/man/man7/build.7	Wed Dec 16 02:54:34 2009	(r200596)
+++ head/share/man/man7/build.7	Wed Dec 16 03:25:43 2009	(r200597)
@@ -345,9 +345,10 @@ If set, the build target
 .Cm buildkernel
 defaults to setting 
 .Va NO_KERNELCLEAN ,
-.Va NO_KERNELCONFIG
+.Va NO_KERNELCONFIG ,
+.Va NO_KERNELDEPEND 
 and
-.Va NO_KERNELDEPEND .
+.Va NO_KERNELOBJ .
 When set to a value other than
 .Cm 1
 then 
@@ -444,6 +445,12 @@ If set, the build process does not run
 as part of the
 .Cm buildkernel
 target.
+.It Va NO_KERNELOBJ
+If set, the build process does not run
+.Dq make obj
+as part of the
+.Cm buildkernel
+target.
 .It Va NO_DOCUPDATE
 If set, the update process does not update the source of the
 .Fx


More information about the svn-src-head mailing list