svn commit: r236519 - stable/9/sys/modules/netmap

Luigi Rizzo luigi at FreeBSD.org
Sun Jun 3 17:51:54 UTC 2012


Author: luigi
Date: Sun Jun  3 17:51:53 2012
New Revision: 236519
URL: http://svn.freebsd.org/changeset/base/236519

Log:
  MFC: let netmap build as a module (but do not connect to the main build yet)

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

Added: stable/9/sys/modules/netmap/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ stable/9/sys/modules/netmap/Makefile	Sun Jun  3 17:51:53 2012	(r236519)
@@ -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-stable mailing list