freebsd-src/sys/modules/tcp/Makefile
Gleb Smirnoff f903065018 hpts: install kernel module
It is important to instantly load tcp_rack.ko and tcp_bbr.ko

Reviewed by:		tuexen, imp
Differential Revision:	https://reviews.freebsd.org/D42697
2023-11-21 09:22:46 -08:00

19 lines
360 B
Makefile

.include <kmod.opts.mk>
SUBDIR= ${_hpts} \
${_tcp_bbr} \
${_tcp_rack} \
${_tcpmd5} \
.if (${MK_INET_SUPPORT} != "no" || ${MK_INET6_SUPPORT} != "no") || \
defined(ALL_MODULES)
_hpts= hpts
_tcp_bbr= bbr
_tcp_rack= rack
.if ${KERN_OPTS:MIPSEC_SUPPORT} && !${KERN_OPTS:MTCP_SIGNATURE}
_tcpmd5= tcpmd5
.endif
.endif
.include <bsd.subdir.mk>