Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Aug 2014 04:21:32 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r269500 - head/sys/modules/ixgbe
Message-ID:  <53df0a4d.5ade.1dac29b@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?53df0a4d.5ade.1dac29b>