Date: Sun, 3 Jun 2012 17:51:53 +0000 (UTC) From: Luigi Rizzo <luigi@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r236519 - stable/9/sys/modules/netmap Message-ID: <201206031751.q53HprHg075520@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201206031751.q53HprHg075520>