svn commit: r269501 - head/sys/modules/igb

Adrian Chadd adrian at FreeBSD.org
Mon Aug 4 04:23:46 UTC 2014


Author: adrian
Date: Mon Aug  4 04:23:45 2014
New Revision: 269501
URL: http://svnweb.freebsd.org/changeset/base/269501

Log:
  Make igb(4) build outside of the kernel build.
  
  Ths defaults to RSS being disabled.

Modified:
  head/sys/modules/igb/Makefile

Modified: head/sys/modules/igb/Makefile
==============================================================================
--- head/sys/modules/igb/Makefile	Mon Aug  4 04:21:32 2014	(r269500)
+++ head/sys/modules/igb/Makefile	Mon Aug  4 04:23:45 2014	(r269501)
@@ -4,7 +4,7 @@
 
 .PATH:  ${.CURDIR}/../../dev/e1000
 KMOD    = if_igb
-SRCS    = device_if.h bus_if.h pci_if.h opt_inet.h opt_inet6.h
+SRCS    = device_if.h bus_if.h pci_if.h opt_inet.h opt_inet6.h opt_rss.h
 SRCS    += if_igb.c $(SHARED_SRCS)
 SHARED_SRCS = e1000_api.c e1000_phy.c e1000_nvm.c e1000_mac.c e1000_manage.c
 SHARED_SRCS += e1000_80003es2lan.c e1000_82542.c e1000_82541.c e1000_82543.c
@@ -33,6 +33,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-head mailing list