d933e97f9d
This driver uses the iflib framework supporting Broadcom 25/50Gbps devices. Reviewed by: gallatin, wblock Approved by: davidch MFC after: 2 weeks Relnotes: yes Sponsored by: Broadcom Limited Differential Revision: https://reviews.freebsd.org/D7551
15 lines
312 B
Makefile
15 lines
312 B
Makefile
#$FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/bnxt
|
|
|
|
KMOD = if_bnxt
|
|
SRCS = device_if.h bus_if.h pci_if.h pci_iov_if.h ifdi_if.h
|
|
SRCS += opt_inet.h opt_inet6.h opt_rss.h
|
|
SRCS += bnxt_txrx.c if_bnxt.c
|
|
SRCS += bnxt_hwrm.c bnxt_hwrm.h
|
|
SRCS += bnxt_sysctl.c bnxt_sysctl.h
|
|
|
|
CFLAGS+= -DIFLIB
|
|
|
|
.include <bsd.kmod.mk>
|