xref: /freebsd/sys/conf/kern.opts.mk (revision 64de80195bba295c961a4cdf96dbe0e4979bdf2a)
1# $FreeBSD$
2
3# Options set in the build system that affect the kernel somehow.
4
5#
6# Define MK_* variables (which are either "yes" or "no") for users
7# to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the
8# make(1) environment.
9# These should be tested with `== "no"' or `!= "no"' in makefiles.
10# The NO_* variables should only be set by makefiles for variables
11# that haven't been converted over.
12#
13
14# Note: bsd.own.mk must be included before the rest of kern.opts.mk to make
15# building on 10.x and earlier work. This should be removed when that's no
16# longer supported since it confounds the defaults (since it uses the host's
17# notion of defaults rather than what's default in current when building
18# within sys/modules).
19.include <bsd.own.mk>
20
21# These options are used by the kernel build process (kern.mk and kmod.mk)
22# They have to be listed here so we can build modules outside of the
23# src tree.
24
25__DEFAULT_YES_OPTIONS = \
26    AUTOFS \
27    BHYVE \
28    BLUETOOTH \
29    CCD \
30    CDDL \
31    CRYPT \
32    CUSE \
33    FORMAT_EXTENSIONS \
34    INET \
35    INET6 \
36    IPFILTER \
37    ISCSI \
38    KERNEL_SYMBOLS \
39    NETGRAPH \
40    PF \
41    SOURCELESS_HOST \
42    SOURCELESS_UCODE \
43    USB_GADGET_EXAMPLES \
44    ZFS
45
46__DEFAULT_NO_OPTIONS = \
47    EISA \
48    NAND \
49    OFED
50
51# expanded inline from bsd.mkopt.mk to avoid share/mk dependency
52
53# Those that default to yes
54.for var in ${__DEFAULT_YES_OPTIONS}
55.if !defined(MK_${var})
56.if defined(WITHOUT_${var})			# WITHOUT always wins
57MK_${var}:=	no
58.else
59MK_${var}:=	yes
60.endif
61.endif
62.endfor
63.undef __DEFAULT_YES_OPTIONS
64
65# Those that default to no
66.for var in ${__DEFAULT_NO_OPTIONS}
67.if !defined(MK_${var})
68.if defined(WITH_${var}) && !defined(WITHOUT_${var}) # WITHOUT always wins
69MK_${var}:=	yes
70.else
71MK_${var}:=	no
72.endif
73.endif
74.endfor
75.undef __DEFAULT_NO_OPTIONS
76
77#
78# MK_*_SUPPORT options which default to "yes" unless their corresponding
79# MK_* variable is set to "no".
80#
81.for var in \
82    INET \
83    INET6
84.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
85MK_${var}_SUPPORT:= no
86.else
87.if defined(KERNBUILDDIR)	# See if there's an opt_foo.h
88OPT_${var}!= cat ${KERNBUILDDIR}/opt_${var:tl}.h; echo
89.if ${OPT_${var}} == ""		# nothing -> no
90MK_${var}_SUPPORT:= no
91.else
92MK_${var}_SUPPORT:= yes
93.endif
94.else				# otherwise, yes
95MK_${var}_SUPPORT:= yes
96.endif
97.endif
98.endfor
99
100
101
102