kern.opts.mk revision 265785
1265785Simp# $FreeBSD: head/sys/conf/kern.opts.mk 265785 2014-05-09 21:11:27Z imp $
2265785Simp
3265785Simp# Options set in the build system that affect the kernel somehow.
4265785Simp
5265785Simp#
6265785Simp# Define MK_* variables (which are either "yes" or "no") for users
7265785Simp# to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the
8265785Simp# make(1) environment.
9265785Simp# These should be tested with `== "no"' or `!= "no"' in makefiles.
10265785Simp# The NO_* variables should only be set by makefiles for variables
11265785Simp# that haven't been converted over.
12265785Simp#
13265785Simp
14265785Simp# These options are used by the kernel build process (kern.mk and kmod.mk)
15265785Simp# They have to be listed here so we can build modules outside of the
16265785Simp# src tree.
17265785Simp
18265785Simp__DEFAULT_YES_OPTIONS = \
19265785Simp    FORMAT_EXTENTIONS \
20265785Simp    KERNEL_SYMBOLS
21265785Simp
22265785Simp__DEFAULT_NO_OPTIONS = \
23265785Simp
24265785Simp.include "../../share/mk/bsd.mkopt.mk"
25