1a4e34498c
- This adds a VM SRIOV interface, ixv, it is however transparent to the user, it links with the ixgbe.ko, but when ixgbe is loaded in a virtualized guest with SRIOV configured this will be detected. - Sync shared code to latest - Many bug fixes and improvements, thanks to everyone who has been using the driver and reporting issues.
12 lines
336 B
Makefile
12 lines
336 B
Makefile
#$FreeBSD$
|
|
.PATH: ${.CURDIR}/../../dev/ixgbe
|
|
KMOD = ixgbe
|
|
SRCS = device_if.h bus_if.h pci_if.h
|
|
SRCS += ixgbe.c ixv.c
|
|
# Shared source
|
|
SRCS += ixgbe_common.c ixgbe_api.c ixgbe_phy.c ixgbe_mbx.c ixgbe_vf.c
|
|
SRCS += ixgbe_82599.c ixgbe_82598.c
|
|
CFLAGS+= -I${.CURDIR}/../../dev/ixgbe -DSMP -DIXGBE_FDIR
|
|
|
|
.include <bsd.kmod.mk>
|