758cc3dcd5
- Split the driver into independent pf and vf loadables. This is in preparation for SRIOV support which will be following shortly. This also allows us to keep a seperate revision control over the two parts, making for easier sustaining. - Make the TX/RX code a shared/seperated file, in the old code base the ixv code would miss fixes that went into ixgbe, this model will eliminate that problem. - The driver loadables will now match the device names, something that has been requested for some time. - Rather than a modules/ixgbe there is now modules/ix and modules/ixv - It will also be possible to make your static kernel with only one or the other for streamlined installs, or both. Enjoy! Submitted by: jfv and erj
16 lines
444 B
Makefile
16 lines
444 B
Makefile
#$FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/ixgbe
|
|
|
|
KMOD = if_ixv
|
|
SRCS = device_if.h bus_if.h pci_if.h
|
|
SRCS += opt_inet.h opt_inet6.h opt_rss.h
|
|
SRCS += if_ixv.c ix_txrx.c
|
|
# Shared source
|
|
SRCS += ixgbe_common.c ixgbe_api.c ixgbe_phy.c ixgbe_mbx.c ixgbe_vf.c
|
|
SRCS += ixgbe_dcb.c ixgbe_dcb_82598.c ixgbe_dcb_82599.c
|
|
SRCS += ixgbe_82599.c ixgbe_82598.c ixgbe_x540.c
|
|
CFLAGS+= -I${.CURDIR}/../../dev/ixgbe -DSMP
|
|
|
|
.include <bsd.kmod.mk>
|