]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/conf/kern.opts.mk
Optimise unmapped LinuxKPI page allocations.
[FreeBSD/FreeBSD.git] / sys / conf / kern.opts.mk
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     IPSEC_SUPPORT \
38     ISCSI \
39     KERNEL_SYMBOLS \
40     NETGRAPH \
41     PF \
42     SOURCELESS_HOST \
43     SOURCELESS_UCODE \
44     USB_GADGET_EXAMPLES \
45     ZFS
46
47 __DEFAULT_NO_OPTIONS = \
48     EXTRA_TCP_STACKS \
49     NAND \
50     OFED \
51     RATELIMIT \
52     REPRODUCIBLE_BUILD
53
54 # Some options are totally broken on some architectures. We disable
55 # them. If you need to enable them on an experimental basis, you
56 # must change this code.
57 # Note: These only apply to the list of modules we build by default
58 # and sometimes what is in the opt_*.h files by default.
59 # Kernel config files are unaffected, though some targets can be
60 # affected by KERNEL_SYMBOLS, FORMAT_EXTENSIONS, CTF and SSP.
61
62 # Things that don't work based on the CPU
63 .if ${MACHINE_CPUARCH} == "arm"
64 . if ${MACHINE_ARCH:Marmv6*} == ""
65 BROKEN_OPTIONS+= CDDL ZFS
66 . endif
67 .endif
68
69 .if ${MACHINE_CPUARCH} == "mips"
70 BROKEN_OPTIONS+= CDDL ZFS SSP
71 .endif
72
73 .if ${MACHINE_CPUARCH} == "powerpc" && ${MACHINE_ARCH} == "powerpc"
74 BROKEN_OPTIONS+= ZFS
75 .endif
76
77 # Things that don't work because the kernel doesn't have the support
78 # for them.
79 .if ${MACHINE} != "i386" && ${MACHINE} != "amd64"
80 BROKEN_OPTIONS+= OFED
81 .endif
82
83 # expanded inline from bsd.mkopt.mk to avoid share/mk dependency
84
85 # Those that default to yes
86 .for var in ${__DEFAULT_YES_OPTIONS}
87 .if !defined(MK_${var})
88 .if defined(WITHOUT_${var})                     # WITHOUT always wins
89 MK_${var}:=     no
90 .else
91 MK_${var}:=     yes
92 .endif
93 .else
94 .if ${MK_${var}} != "yes" && ${MK_${var}} != "no"
95 .error "Illegal value for MK_${var}: ${MK_${var}}"
96 .endif
97 .endif # !defined(MK_${var})
98 .endfor
99 .undef __DEFAULT_YES_OPTIONS
100
101 # Those that default to no
102 .for var in ${__DEFAULT_NO_OPTIONS}
103 .if !defined(MK_${var})
104 .if defined(WITH_${var}) && !defined(WITHOUT_${var}) # WITHOUT always wins
105 MK_${var}:=     yes
106 .else
107 MK_${var}:=     no
108 .endif
109 .else
110 .if ${MK_${var}} != "yes" && ${MK_${var}} != "no"
111 .error "Illegal value for MK_${var}: ${MK_${var}}"
112 .endif
113 .endif # !defined(MK_${var})
114 .endfor
115 .undef __DEFAULT_NO_OPTIONS
116
117 #
118 # MK_* options which are always no, usually because they are
119 # unsupported/badly broken on this architecture.
120 #
121 .for var in ${BROKEN_OPTIONS}
122 MK_${var}:=     no
123 .endfor
124 .undef BROKEN_OPTIONS
125 #end of bsd.mkopt.mk expanded inline.
126
127 #
128 # MK_*_SUPPORT options which default to "yes" unless their corresponding
129 # MK_* variable is set to "no".
130 #
131 .for var in \
132     INET \
133     INET6
134 .if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
135 MK_${var}_SUPPORT:= no
136 .else
137 .if defined(KERNBUILDDIR)       # See if there's an opt_foo.h
138 .if !defined(OPT_${var})
139 OPT_${var}!= cat ${KERNBUILDDIR}/opt_${var:tl}.h; echo
140 .export OPT_${var}
141 .endif
142 .if ${OPT_${var}} == ""         # nothing -> no
143 MK_${var}_SUPPORT:= no
144 .else
145 MK_${var}_SUPPORT:= yes
146 .endif
147 .else                           # otherwise, yes
148 MK_${var}_SUPPORT:= yes
149 .endif
150 .endif
151 .endfor
152
153 # Some modules only compile successfully if option FDT is set, due to #ifdef FDT
154 # wrapped around declarations.  Module makefiles can optionally compile such
155 # things using .if !empty(OPT_FDT)
156 .if !defined(OPT_FDT) && defined(KERNBUILDDIR)
157 OPT_FDT!= sed -n '/FDT/p' ${KERNBUILDDIR}/opt_platform.h
158 .export OPT_FDT
159 .endif