svn commit: r236256 - head/sys/modules/netmap

Luigi Rizzo luigi at FreeBSD.org
Tue May 29 19:55:07 UTC 2012


Author: luigi
Date: Tue May 29 19:55:07 2012
New Revision: 236256
URL: http://svn.freebsd.org/changeset/base/236256

Log:
  add support to build netmap as a module,
  but for the time being keep it disconnected from the main build.
  
  MFC after:	3 days

Added:
  head/sys/modules/netmap/
  head/sys/modules/netmap/Makefile   (contents, props changed)

Added: head/sys/modules/netmap/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/modules/netmap/Makefile	Tue May 29 19:55:07 2012	(r236256)
@@ -0,0 +1,14 @@
+# $FreeBSD$
+#
+# Compile netmap as a module, useful if you want a netmap bridge
+# or loadable drivers.
+
+.PATH: ${.CURDIR}/../../dev/netmap
+.PATH.h: ${.CURDIR}/../../net
+KMOD	= netmap
+SRCS	= device_if.h bus_if.h opt_netmap.h
+SRCS	+= netmap.c netmap.h netmap_kern.h
+
+netmap.o: netmap_mem2.c
+
+.include <bsd.kmod.mk>


More information about the svn-src-all mailing list