Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Jun 2009 06:11:04 +0000 (UTC)
From:      Marko Zec <zec@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r194683 - in head/sys: conf modules/netgraph modules/netgraph/pipe
Message-ID:  <200906230611.n5N6B4Gr066003@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: zec
Date: Tue Jun 23 06:11:04 2009
New Revision: 194683
URL: http://svn.freebsd.org/changeset/base/194683

Log:
  Connect ng_pipe to the default build.
  
  Approved by:	julian (mentor)

Added:
  head/sys/modules/netgraph/pipe/
  head/sys/modules/netgraph/pipe/Makefile   (contents, props changed)
Modified:
  head/sys/conf/NOTES
  head/sys/conf/files
  head/sys/conf/options
  head/sys/modules/netgraph/Makefile

Modified: head/sys/conf/NOTES
==============================================================================
--- head/sys/conf/NOTES	Tue Jun 23 06:00:31 2009	(r194682)
+++ head/sys/conf/NOTES	Tue Jun 23 06:11:04 2009	(r194683)
@@ -690,6 +690,7 @@ options 	NETGRAPH_MPPC_ENCRYPTION
 options 	NETGRAPH_NETFLOW
 options 	NETGRAPH_NAT
 options 	NETGRAPH_ONE2MANY
+options 	NETGRAPH_PIPE
 options 	NETGRAPH_PPP
 options 	NETGRAPH_PPPOE
 options 	NETGRAPH_PPTPGRE

Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files	Tue Jun 23 06:00:31 2009	(r194682)
+++ head/sys/conf/files	Tue Jun 23 06:11:04 2009	(r194683)
@@ -2330,6 +2330,7 @@ netgraph/ng_mppc.c		optional netgraph_mp
 netgraph/ng_nat.c		optional netgraph_nat inet libalias
 netgraph/ng_one2many.c		optional netgraph_one2many
 netgraph/ng_parse.c		optional netgraph
+netgraph/ng_pipe.c		optional netgraph_pipe
 netgraph/ng_ppp.c		optional netgraph_ppp
 netgraph/ng_pppoe.c		optional netgraph_pppoe
 netgraph/ng_pptpgre.c		optional netgraph_pptpgre

Modified: head/sys/conf/options
==============================================================================
--- head/sys/conf/options	Tue Jun 23 06:00:31 2009	(r194682)
+++ head/sys/conf/options	Tue Jun 23 06:11:04 2009	(r194683)
@@ -485,6 +485,7 @@ NETGRAPH_MPPC_ENCRYPTION	opt_netgraph.h
 NETGRAPH_NAT		opt_netgraph.h
 NETGRAPH_NETFLOW	opt_netgraph.h
 NETGRAPH_ONE2MANY	opt_netgraph.h
+NETGRAPH_PIPE		opt_netgraph.h
 NETGRAPH_PPP		opt_netgraph.h
 NETGRAPH_PPPOE		opt_netgraph.h
 NETGRAPH_PPTPGRE	opt_netgraph.h

Modified: head/sys/modules/netgraph/Makefile
==============================================================================
--- head/sys/modules/netgraph/Makefile	Tue Jun 23 06:00:31 2009	(r194682)
+++ head/sys/modules/netgraph/Makefile	Tue Jun 23 06:11:04 2009	(r194683)
@@ -35,6 +35,7 @@ SUBDIR=	async \
 	netflow \
 	netgraph \
 	one2many \
+	pipe \
 	ppp \
 	pppoe \
 	pptpgre \

Added: head/sys/modules/netgraph/pipe/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/modules/netgraph/pipe/Makefile	Tue Jun 23 06:11:04 2009	(r194683)
@@ -0,0 +1,6 @@
+# $FreeBSD$
+
+KMOD=	ng_pipe
+SRCS= 	ng_pipe.c
+
+.include <bsd.kmod.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906230611.n5N6B4Gr066003>