2014-05-09 21:11:27 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
# Options set in the build system that affect the kernel somehow.
|
|
|
|
|
|
|
|
#
|
|
|
|
# Define MK_* variables (which are either "yes" or "no") for users
|
|
|
|
# to set via WITH_*/WITHOUT_* in /etc/src.conf and override in the
|
|
|
|
# make(1) environment.
|
|
|
|
# These should be tested with `== "no"' or `!= "no"' in makefiles.
|
|
|
|
# The NO_* variables should only be set by makefiles for variables
|
|
|
|
# that haven't been converted over.
|
|
|
|
#
|
|
|
|
|
2014-08-11 14:50:49 +00:00
|
|
|
# Note: bsd.own.mk must be included before the rest of kern.opts.mk to make
|
|
|
|
# building on 10.x and earlier work. This should be removed when that's no
|
|
|
|
# longer supported since it confounds the defaults (since it uses the host's
|
|
|
|
# notion of defaults rather than what's default in current when building
|
|
|
|
# within sys/modules).
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
2014-05-09 21:11:27 +00:00
|
|
|
# These options are used by the kernel build process (kern.mk and kmod.mk)
|
|
|
|
# They have to be listed here so we can build modules outside of the
|
|
|
|
# src tree.
|
|
|
|
|
2019-06-02 23:38:19 +00:00
|
|
|
KLDXREF_CMD?= kldxref
|
|
|
|
|
2014-05-09 21:11:27 +00:00
|
|
|
__DEFAULT_YES_OPTIONS = \
|
2015-01-26 07:15:49 +00:00
|
|
|
AUTOFS \
|
2015-01-26 06:44:48 +00:00
|
|
|
BHYVE \
|
2014-08-11 14:50:49 +00:00
|
|
|
BLUETOOTH \
|
2015-01-25 04:52:48 +00:00
|
|
|
CCD \
|
2014-08-11 14:50:49 +00:00
|
|
|
CDDL \
|
|
|
|
CRYPT \
|
2015-01-25 05:13:15 +00:00
|
|
|
CUSE \
|
2018-03-17 17:18:29 +00:00
|
|
|
EFI \
|
2014-05-10 00:42:43 +00:00
|
|
|
FORMAT_EXTENSIONS \
|
2014-08-04 22:37:02 +00:00
|
|
|
INET \
|
|
|
|
INET6 \
|
2014-08-11 14:50:49 +00:00
|
|
|
IPFILTER \
|
2017-02-06 08:49:57 +00:00
|
|
|
IPSEC_SUPPORT \
|
2015-01-25 04:20:11 +00:00
|
|
|
ISCSI \
|
2014-08-11 14:50:49 +00:00
|
|
|
KERNEL_SYMBOLS \
|
|
|
|
NETGRAPH \
|
|
|
|
PF \
|
2018-09-13 14:52:59 +00:00
|
|
|
REPRODUCIBLE_BUILD \
|
2014-08-11 14:50:49 +00:00
|
|
|
SOURCELESS_HOST \
|
|
|
|
SOURCELESS_UCODE \
|
2017-05-09 05:03:35 +00:00
|
|
|
TESTS \
|
2014-08-11 14:50:49 +00:00
|
|
|
USB_GADGET_EXAMPLES \
|
|
|
|
ZFS
|
|
|
|
|
|
|
|
__DEFAULT_NO_OPTIONS = \
|
2016-06-10 19:06:11 +00:00
|
|
|
EXTRA_TCP_STACKS \
|
2018-02-28 14:57:45 +00:00
|
|
|
KERNEL_RETPOLINE \
|
2016-12-15 21:26:58 +00:00
|
|
|
OFED \
|
2018-09-13 14:52:59 +00:00
|
|
|
RATELIMIT
|
2014-05-09 21:11:27 +00:00
|
|
|
|
2015-03-12 03:57:19 +00:00
|
|
|
# Some options are totally broken on some architectures. We disable
|
|
|
|
# them. If you need to enable them on an experimental basis, you
|
|
|
|
# must change this code.
|
2015-03-27 17:36:22 +00:00
|
|
|
# Note: These only apply to the list of modules we build by default
|
|
|
|
# and sometimes what is in the opt_*.h files by default.
|
|
|
|
# Kernel config files are unaffected, though some targets can be
|
|
|
|
# affected by KERNEL_SYMBOLS, FORMAT_EXTENSIONS, CTF and SSP.
|
2015-03-12 03:57:19 +00:00
|
|
|
|
|
|
|
# Things that don't work based on the CPU
|
|
|
|
.if ${MACHINE_CPUARCH} == "arm"
|
2017-10-05 23:01:33 +00:00
|
|
|
. if ${MACHINE_ARCH:Marmv[67]*} == ""
|
2016-03-21 23:32:13 +00:00
|
|
|
BROKEN_OPTIONS+= CDDL ZFS
|
2015-11-20 16:18:27 +00:00
|
|
|
. endif
|
2015-03-12 03:57:19 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MACHINE_CPUARCH} == "mips"
|
2016-10-12 13:51:41 +00:00
|
|
|
BROKEN_OPTIONS+= CDDL ZFS SSP
|
2015-03-12 03:57:19 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MACHINE_CPUARCH} == "powerpc" && ${MACHINE_ARCH} == "powerpc"
|
|
|
|
BROKEN_OPTIONS+= ZFS
|
|
|
|
.endif
|
|
|
|
|
2017-04-12 10:40:30 +00:00
|
|
|
.if ${MACHINE_CPUARCH} == "riscv"
|
|
|
|
BROKEN_OPTIONS+= FORMAT_EXTENSIONS
|
|
|
|
.endif
|
|
|
|
|
2015-03-12 03:57:19 +00:00
|
|
|
# Things that don't work because the kernel doesn't have the support
|
|
|
|
# for them.
|
|
|
|
.if ${MACHINE} != "i386" && ${MACHINE} != "amd64"
|
|
|
|
BROKEN_OPTIONS+= OFED
|
|
|
|
.endif
|
|
|
|
|
2018-02-28 14:57:45 +00:00
|
|
|
# Things that don't work based on toolchain support.
|
2018-03-15 00:57:57 +00:00
|
|
|
.if ${MACHINE} != "i386" && ${MACHINE} != "amd64"
|
2018-02-28 14:57:45 +00:00
|
|
|
BROKEN_OPTIONS+= KERNEL_RETPOLINE
|
|
|
|
.endif
|
|
|
|
|
2018-03-17 17:18:29 +00:00
|
|
|
# EFI doesn't exist on mips, powerpc, sparc or riscv.
|
|
|
|
.if ${MACHINE:Mmips} || ${MACHINE:Mpowerpc} || ${MACHINE:Msparc64} || ${MACHINE:Mriscv}
|
|
|
|
BROKEN_OPTIONS+=EFI
|
|
|
|
.endif
|
|
|
|
|
2014-08-11 14:50:49 +00:00
|
|
|
# expanded inline from bsd.mkopt.mk to avoid share/mk dependency
|
2014-05-09 21:11:27 +00:00
|
|
|
|
2014-08-11 14:50:49 +00:00
|
|
|
# Those that default to yes
|
2014-05-17 20:31:34 +00:00
|
|
|
.for var in ${__DEFAULT_YES_OPTIONS}
|
|
|
|
.if !defined(MK_${var})
|
|
|
|
.if defined(WITHOUT_${var}) # WITHOUT always wins
|
|
|
|
MK_${var}:= no
|
2014-05-11 23:22:32 +00:00
|
|
|
.else
|
2014-05-17 20:31:34 +00:00
|
|
|
MK_${var}:= yes
|
2014-05-11 23:22:32 +00:00
|
|
|
.endif
|
2015-02-09 16:03:55 +00:00
|
|
|
.else
|
|
|
|
.if ${MK_${var}} != "yes" && ${MK_${var}} != "no"
|
|
|
|
.error "Illegal value for MK_${var}: ${MK_${var}}"
|
2014-05-17 20:31:34 +00:00
|
|
|
.endif
|
2015-02-09 16:03:55 +00:00
|
|
|
.endif # !defined(MK_${var})
|
2014-05-17 20:31:34 +00:00
|
|
|
.endfor
|
|
|
|
.undef __DEFAULT_YES_OPTIONS
|
2014-08-04 22:37:02 +00:00
|
|
|
|
2014-08-11 14:50:49 +00:00
|
|
|
# Those that default to no
|
|
|
|
.for var in ${__DEFAULT_NO_OPTIONS}
|
|
|
|
.if !defined(MK_${var})
|
|
|
|
.if defined(WITH_${var}) && !defined(WITHOUT_${var}) # WITHOUT always wins
|
|
|
|
MK_${var}:= yes
|
|
|
|
.else
|
|
|
|
MK_${var}:= no
|
|
|
|
.endif
|
2015-02-09 16:03:55 +00:00
|
|
|
.else
|
|
|
|
.if ${MK_${var}} != "yes" && ${MK_${var}} != "no"
|
|
|
|
.error "Illegal value for MK_${var}: ${MK_${var}}"
|
2014-08-11 14:50:49 +00:00
|
|
|
.endif
|
2015-02-09 16:03:55 +00:00
|
|
|
.endif # !defined(MK_${var})
|
2014-08-11 14:50:49 +00:00
|
|
|
.endfor
|
|
|
|
.undef __DEFAULT_NO_OPTIONS
|
|
|
|
|
2015-03-12 03:57:00 +00:00
|
|
|
#
|
|
|
|
# MK_* options which are always no, usually because they are
|
|
|
|
# unsupported/badly broken on this architecture.
|
|
|
|
#
|
|
|
|
.for var in ${BROKEN_OPTIONS}
|
|
|
|
MK_${var}:= no
|
|
|
|
.endfor
|
|
|
|
.undef BROKEN_OPTIONS
|
|
|
|
#end of bsd.mkopt.mk expanded inline.
|
|
|
|
|
2014-08-04 22:37:02 +00:00
|
|
|
#
|
|
|
|
# MK_*_SUPPORT options which default to "yes" unless their corresponding
|
|
|
|
# MK_* variable is set to "no".
|
|
|
|
#
|
|
|
|
.for var in \
|
|
|
|
INET \
|
|
|
|
INET6
|
|
|
|
.if defined(WITHOUT_${var}_SUPPORT) || ${MK_${var}} == "no"
|
|
|
|
MK_${var}_SUPPORT:= no
|
|
|
|
.else
|
2014-11-14 21:10:45 +00:00
|
|
|
.if defined(KERNBUILDDIR) # See if there's an opt_foo.h
|
2016-03-12 22:21:02 +00:00
|
|
|
.if !defined(OPT_${var})
|
2014-11-14 21:10:45 +00:00
|
|
|
OPT_${var}!= cat ${KERNBUILDDIR}/opt_${var:tl}.h; echo
|
2016-03-12 22:21:02 +00:00
|
|
|
.export OPT_${var}
|
|
|
|
.endif
|
2014-11-14 21:10:45 +00:00
|
|
|
.if ${OPT_${var}} == "" # nothing -> no
|
|
|
|
MK_${var}_SUPPORT:= no
|
|
|
|
.else
|
|
|
|
MK_${var}_SUPPORT:= yes
|
|
|
|
.endif
|
|
|
|
.else # otherwise, yes
|
2014-08-04 22:37:02 +00:00
|
|
|
MK_${var}_SUPPORT:= yes
|
|
|
|
.endif
|
2014-11-14 21:10:45 +00:00
|
|
|
.endif
|
2014-08-04 22:37:02 +00:00
|
|
|
.endfor
|
2016-05-27 17:40:29 +00:00
|
|
|
|
|
|
|
# Some modules only compile successfully if option FDT is set, due to #ifdef FDT
|
|
|
|
# wrapped around declarations. Module makefiles can optionally compile such
|
|
|
|
# things using .if !empty(OPT_FDT)
|
|
|
|
.if !defined(OPT_FDT) && defined(KERNBUILDDIR)
|
|
|
|
OPT_FDT!= sed -n '/FDT/p' ${KERNBUILDDIR}/opt_platform.h
|
|
|
|
.export OPT_FDT
|
|
|
|
.endif
|