mirror of
https://github.com/opnsense/src.git
synced 2026-04-02 16:05:17 -04:00
- Add full support for IPv6 addresses. - Read the size of the L2 table during attach. Do not assume that PCIe physical function 4 of the card has all of the table to itself. - Use FNV instead of Jenkins to hash L3 addresses and drop the private copy of jhash.h from the driver. MFC after: 1 week
30 lines
558 B
Makefile
30 lines
558 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
CXGBE = ${.CURDIR}/../../../dev/cxgbe
|
|
.PATH: ${CXGBE}/tom
|
|
|
|
KMOD = t4_tom
|
|
SRCS = t4_tom.c t4_connect.c t4_listen.c t4_cpl_io.c t4_tom_l2t.c t4_ddp.c
|
|
SRCS+= device_if.h bus_if.h pci_if.h
|
|
SRCS+= opt_inet.h opt_inet6.h
|
|
|
|
CFLAGS+= -I${CXGBE}
|
|
|
|
.if !defined(KERNBUILDDIR)
|
|
.if ${MK_INET_SUPPORT} != "no"
|
|
opt_inet.h:
|
|
@echo "#define INET 1" > ${.TARGET}
|
|
@echo "#define TCP_OFFLOAD 1" >> ${.TARGET}
|
|
.endif
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
opt_inet6.h:
|
|
@echo "#define INET6 1" > ${.TARGET}
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|