61ae650d55
- It was decided to change the driver name to if_ixl for FreeBSD - This release adds the VF Driver to the tree, it can be built into the kernel or as the if_ixlv module - The VF driver is independent for the first time, this will be desireable when full SRIOV capability is added to the OS. - Thanks to my new coworker Eric Joyner for his superb work in both the core and vf driver code. Enjoy everyone! Submitted by: jack.vogel@intel.com and eric.joyner@intel.com MFC after: 3 days (hoping to make 10.1)
21 lines
428 B
Makefile
Executable File
21 lines
428 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
|
|
SRCS += if_ixlv.c ixlvc.c ixl_txrx.c i40e_osdep.c
|
|
|
|
# Shared source
|
|
SRCS += i40e_common.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>
|