Date: Tue, 29 May 2012 19:55:07 +0000 (UTC) From: Luigi Rizzo <luigi@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r236256 - head/sys/modules/netmap Message-ID: <201205291955.q4TJt71s099549@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201205291955.q4TJt71s099549>