svn commit: r269500 - head/sys/modules/ixgbe
Adrian Chadd
adrian at FreeBSD.org
Mon Aug 4 04:21:33 UTC 2014
Author: adrian
Date: Mon Aug 4 04:21:32 2014
New Revision: 269500
URL: http://svnweb.freebsd.org/changeset/base/269500
Log:
Make the ixgbe(4) module buildable outside of the tree.
It defaults to RSS not being enabled.
Modified:
head/sys/modules/ixgbe/Makefile
Modified: head/sys/modules/ixgbe/Makefile
==============================================================================
--- head/sys/modules/ixgbe/Makefile Mon Aug 4 04:00:48 2014 (r269499)
+++ head/sys/modules/ixgbe/Makefile Mon Aug 4 04:21:32 2014 (r269500)
@@ -6,7 +6,7 @@
KMOD = if_ixgbe
SRCS = device_if.h bus_if.h pci_if.h
-SRCS += opt_inet.h opt_inet6.h
+SRCS += opt_inet.h opt_inet6.h opt_rss.h
SRCS += ixgbe.c ixv.c
# Shared source
SRCS += ixgbe_common.c ixgbe_api.c ixgbe_phy.c ixgbe_mbx.c ixgbe_vf.c
@@ -24,6 +24,10 @@ opt_inet.h:
opt_inet6.h:
@echo "#define INET6 1" > ${.TARGET}
.endif
+
+opt_rss.h:
+ @echo "" > ${.TARGET}
+
.endif
.include <bsd.kmod.mk>
More information about the svn-src-all
mailing list