summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorglebius <glebius@FreeBSD.org>2006-12-29 13:16:43 +0000
committerglebius <glebius@FreeBSD.org>2006-12-29 13:16:43 +0000
commitcbd305868f05bdc421a600acb8319cc20d782f11 (patch)
tree817bfefb432905d3c7e2d7662db4ccd95f05fe7c /sys
parent070982755d1434c5ffa0f07cc380331bae4d3960 (diff)
downloadFreeBSD-src-cbd305868f05bdc421a600acb8319cc20d782f11.zip
FreeBSD-src-cbd305868f05bdc421a600acb8319cc20d782f11.tar.gz
Build bits for ng_deflate(4) and ng_pred1(4).
Diffstat (limited to 'sys')
-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
6 files changed, 20 insertions, 0 deletions
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