mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 15:19:31 -04:00
come up as 't6nex' nexus devices with 'cc' ports hanging off them. The T6 firmware and configuration files will be added as soon as they are released. For now the driver will try to work with whatever firmware and configuration is on the card's flash. Sponsored by: Chelsio Communications
32 lines
502 B
Makefile
32 lines
502 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
SYSDIR?=${.CURDIR}/../..
|
|
.include "${SYSDIR}/conf/kern.opts.mk"
|
|
|
|
SUBDIR= if_cxgbe
|
|
SUBDIR+= if_cxl
|
|
SUBDIR+= if_cc
|
|
SUBDIR+= if_cxgbev
|
|
SUBDIR+= if_cxlv
|
|
SUBDIR+= if_ccv
|
|
SUBDIR+= t4_firmware
|
|
SUBDIR+= t5_firmware
|
|
SUBDIR+= ${_tom}
|
|
SUBDIR+= ${_iw_cxgbe}
|
|
SUBDIR+= ${_cxgbei}
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
|
_tom= tom
|
|
_cxgbei= cxgbei
|
|
.if ${MK_OFED} != "no" || defined(ALL_MODULES)
|
|
_iw_cxgbe= iw_cxgbe
|
|
.endif
|
|
.endif
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386"
|
|
_tom= tom
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|