mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05:00
code update, with supporting changes in the CORE. Changes for the extended media types, VF driver has virtual channel protocol changes, and some register use corrections. This software change should be coordinated with Firmware updates to your hardware, contact your support channels for that. MFC after: 1 week
20 lines
423 B
Makefile
Executable file
20 lines
423 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
|
|
|
|
CFLAGS += -DSMP
|
|
|
|
# Add Flow Director support
|
|
# CFLAGS += -DIXL_FDIR
|
|
# Debug messages / sysctls
|
|
# CFLAGS += -DIXLE_DEBUG
|
|
|
|
.include <bsd.kmod.mk>
|