Date: Mon, 4 Aug 2014 04:23:45 +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: r269501 - head/sys/modules/igb Message-ID: <53df0ad1.5af3.39c08940@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?53df0ad1.5af3.39c08940>