summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--share/man/man4/Makefile2
-rw-r--r--sys/conf/NOTES2
-rw-r--r--sys/conf/files2
-rw-r--r--sys/conf/options2
-rw-r--r--sys/modules/netgraph/Makefile2
-rw-r--r--sys/modules/netgraph/deflate/Makefile6
-rw-r--r--sys/modules/netgraph/pred1/Makefile6
7 files changed, 22 insertions, 0 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile
index dd5b34f..fe14a15 100644
--- a/share/man/man4/Makefile
+++ b/share/man/man4/Makefile
@@ -190,6 +190,7 @@ MAN= aac.4 \
ng_btsocket.4 \
ng_ccatm.4 \
ng_cisco.4 \
+ ng_deflate.4 \
ng_device.4 \
nge.4 \
ng_echo.4 \
@@ -218,6 +219,7 @@ MAN= aac.4 \
ng_ppp.4 \
ng_pppoe.4 \
ng_pptpgre.4 \
+ ng_pred1.4 \
ng_rfc1490.4 \
ng_socket.4 \
ng_source.4 \
diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index c6b8986..58e2bfd 100644
--- a/sys/conf/NOTES
+++ b/sys/conf/NOTES
@@ -650,6 +650,7 @@ options NETGRAPH_BLUETOOTH_UBTBCMFW # ubtbcmfw(4)
options NETGRAPH_BPF
options NETGRAPH_BRIDGE
options NETGRAPH_CISCO
+options NETGRAPH_DEFLATE
options NETGRAPH_DEVICE
options NETGRAPH_ECHO
options NETGRAPH_EIFACE
@@ -674,6 +675,7 @@ options NETGRAPH_ONE2MANY
options NETGRAPH_PPP
options NETGRAPH_PPPOE
options NETGRAPH_PPTPGRE
+options NETGRAPH_PRED1
options NETGRAPH_RFC1490
options NETGRAPH_SOCKET
options NETGRAPH_SPLIT
diff --git a/sys/conf/files b/sys/conf/files
index cdc1090..386b226 100644
--- a/sys/conf/files
+++ b/sys/conf/files
@@ -1696,6 +1696,7 @@ netgraph/ng_base.c optional netgraph
netgraph/ng_bpf.c optional netgraph_bpf
netgraph/ng_bridge.c optional netgraph_bridge
netgraph/ng_cisco.c optional netgraph_cisco
+netgraph/ng_deflate.c optional netgraph_deflate
netgraph/ng_device.c optional netgraph_device
netgraph/ng_echo.c optional netgraph_echo
netgraph/ng_eiface.c optional netgraph_eiface
@@ -1719,6 +1720,7 @@ netgraph/ng_parse.c optional netgraph
netgraph/ng_ppp.c optional netgraph_ppp
netgraph/ng_pppoe.c optional netgraph_pppoe
netgraph/ng_pptpgre.c optional netgraph_pptpgre
+netgraph/ng_pred1.c optional netgraph_pred1
netgraph/ng_rfc1490.c optional netgraph_rfc1490
netgraph/ng_socket.c optional netgraph_socket
netgraph/ng_split.c optional netgraph_split
diff --git a/sys/conf/options b/sys/conf/options
index 80339c7..36d3b5f 100644
--- a/sys/conf/options
+++ b/sys/conf/options
@@ -442,6 +442,7 @@ NETGRAPH_BLUETOOTH_UBTBCMFW opt_netgraph.h
NETGRAPH_BPF opt_netgraph.h
NETGRAPH_BRIDGE opt_netgraph.h
NETGRAPH_CISCO opt_netgraph.h
+NETGRAPH_DEFLATE opt_netgraph.h
NETGRAPH_DEVICE opt_netgraph.h
NETGRAPH_ECHO opt_netgraph.h
NETGRAPH_EIFACE opt_netgraph.h
@@ -466,6 +467,7 @@ NETGRAPH_ONE2MANY opt_netgraph.h
NETGRAPH_PPP opt_netgraph.h
NETGRAPH_PPPOE opt_netgraph.h
NETGRAPH_PPTPGRE opt_netgraph.h
+NETGRAPH_PRED1 opt_netgraph.h
NETGRAPH_RFC1490 opt_netgraph.h
NETGRAPH_SOCKET opt_netgraph.h
NETGRAPH_SPLIT opt_netgraph.h
diff --git a/sys/modules/netgraph/Makefile b/sys/modules/netgraph/Makefile
index 7c647e7..a1e91bb 100644
--- a/sys/modules/netgraph/Makefile
+++ b/sys/modules/netgraph/Makefile
@@ -10,6 +10,7 @@ SUBDIR= async \
bpf \
bridge \
cisco \
+ deflate \
device \
echo \
eiface \
@@ -35,6 +36,7 @@ SUBDIR= async \
ppp \
pppoe \
pptpgre \
+ pred1 \
rfc1490 \
socket \
source \
diff --git a/sys/modules/netgraph/deflate/Makefile b/sys/modules/netgraph/deflate/Makefile
new file mode 100644
index 0000000..607d6d3
--- /dev/null
+++ b/sys/modules/netgraph/deflate/Makefile
@@ -0,0 +1,6 @@
+# $FreeBSD$
+
+KMOD= ng_deflate
+SRCS= ng_deflate.c
+
+.include <bsd.kmod.mk>
diff --git a/sys/modules/netgraph/pred1/Makefile b/sys/modules/netgraph/pred1/Makefile
new file mode 100644
index 0000000..a3ecec9
--- /dev/null
+++ b/sys/modules/netgraph/pred1/Makefile
@@ -0,0 +1,6 @@
+# $FreeBSD$
+
+KMOD= ng_pred1
+SRCS= ng_pred1.c
+
+.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud