393c4bb1ba
if_ixl to version 1.3.0, if_ixlv to version 1.2.0 - Major change in both drivers is to add RSS support - In ixl fix some interface speed related issues, dual speed was not changing correctly, KR/X media was not displaying correctly (this has a workaround until a more robust media handling is in place) - Add a warning when using Dell NPAR and the speed is less than 10G - Wrap a queue hung message in IXL_DEBUG, as it is non-fatal, and without tuning can display excessively MFC after: 1 week
21 lines
449 B
Makefile
Executable File
21 lines
449 B
Makefile
Executable File
#$FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/ixl
|
|
|
|
KMOD = if_ixlv
|
|
SRCS = device_if.h bus_if.h pci_if.h opt_bdg.h
|
|
SRCS += opt_inet.h opt_inet6.h opt_rss.h
|
|
SRCS += if_ixlv.c ixlvc.c ixl_txrx.c i40e_osdep.c
|
|
|
|
# Shared source
|
|
SRCS += i40e_common.c i40e_nvm.c i40e_adminq.c i40e_lan_hmc.c i40e_hmc.c
|
|
|
|
CFLAGS += -DSMP
|
|
|
|
# Add Flow Director support
|
|
# CFLAGS += -DIXL_FDIR
|
|
# Debug messages / sysctls
|
|
# CFLAGS += -DIXLE_DEBUG
|
|
|
|
.include <bsd.kmod.mk>
|