aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/conf/NOTES1
-rw-r--r--sys/conf/files1
-rw-r--r--sys/conf/options1
-rw-r--r--sys/modules/netgraph/Makefile1
-rw-r--r--sys/modules/netgraph/pipe/Makefile6
5 files changed, 10 insertions, 0 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index 6c2a8b66f780..dfc1869cab8c 100644
--- a/sys/conf/NOTES
+++ b/sys/conf/NOTES
@@ -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
diff --git a/sys/conf/files b/sys/conf/files
index 19f1e2eb882f..d35ef359aa5a 100644
--- a/sys/conf/files
+++ b/sys/conf/files
@@ -2330,6 +2330,7 @@ netgraph/ng_mppc.c optional netgraph_mppc_compression | \
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
diff --git a/sys/conf/options b/sys/conf/options
index 58bf9b96ecdb..1995420303e0 100644
--- a/sys/conf/options
+++ b/sys/conf/options
@@ -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
diff --git a/sys/modules/netgraph/Makefile b/sys/modules/netgraph/Makefile
index 2bae5ef22ac7..70861cb513cc 100644
--- a/sys/modules/netgraph/Makefile
+++ b/sys/modules/netgraph/Makefile
@@ -35,6 +35,7 @@ SUBDIR= async \
netflow \
netgraph \
one2many \
+ pipe \
ppp \
pppoe \
pptpgre \
diff --git a/sys/modules/netgraph/pipe/Makefile b/sys/modules/netgraph/pipe/Makefile
new file mode 100644
index 000000000000..1e1728bd8a5d
--- /dev/null
+++ b/sys/modules/netgraph/pipe/Makefile
@@ -0,0 +1,6 @@
+# $FreeBSD$
+
+KMOD= ng_pipe
+SRCS= ng_pipe.c
+
+.include <bsd.kmod.mk>