summaryrefslogtreecommitdiffstats
path: root/sys/modules/ixv/Makefile
diff options
context:
space:
mode:
authorjfv <jfv@FreeBSD.org>2015-03-17 18:32:28 +0000
committerjfv <jfv@FreeBSD.org>2015-03-17 18:32:28 +0000
commit06710b088448f3def482afa52f72ce3aac5cb61a (patch)
tree8b4de7f1d675fe05d6b77387b2cf8fd4603882bd /sys/modules/ixv/Makefile
parentc00b4703949f8f1b7a7d2bd81919b332794cbd7f (diff)
downloadFreeBSD-src-06710b088448f3def482afa52f72ce3aac5cb61a.zip
FreeBSD-src-06710b088448f3def482afa52f72ce3aac5cb61a.tar.gz
Update to the Intel ixgbe driver:
- 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
Diffstat (limited to 'sys/modules/ixv/Makefile')
-rw-r--r--sys/modules/ixv/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/sys/modules/ixv/Makefile b/sys/modules/ixv/Makefile
new file mode 100644
index 0000000..20ecaf1
--- /dev/null
+++ b/sys/modules/ixv/Makefile
@@ -0,0 +1,15 @@
+#$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>
OpenPOWER on IntegriCloud