From 9e6f1d3be4b04e758217b685e24bb36fa3c36747 Mon Sep 17 00:00:00 2001 From: Gleb Smirnoff Date: Fri, 29 Dec 2006 13:16:43 +0000 Subject: [PATCH] Build bits for ng_deflate(4) and ng_pred1(4). --- share/man/man4/Makefile | 2 ++ sys/conf/NOTES | 2 ++ sys/conf/files | 2 ++ sys/conf/options | 2 ++ sys/modules/netgraph/Makefile | 2 ++ sys/modules/netgraph/deflate/Makefile | 6 ++++++ sys/modules/netgraph/pred1/Makefile | 6 ++++++ 7 files changed, 22 insertions(+) create mode 100644 sys/modules/netgraph/deflate/Makefile create mode 100644 sys/modules/netgraph/pred1/Makefile diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index dd5b34f8ec6..fe14a159ab2 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 c6b898621b6..58e2bfdaa85 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 cdc10904c25..386b226be3f 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 80339c73a23..36d3b5f0d05 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 7c647e729d8..a1e91bb9d62 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 00000000000..607d6d3cb77 --- /dev/null +++ b/sys/modules/netgraph/deflate/Makefile @@ -0,0 +1,6 @@ +# $FreeBSD$ + +KMOD= ng_deflate +SRCS= ng_deflate.c + +.include diff --git a/sys/modules/netgraph/pred1/Makefile b/sys/modules/netgraph/pred1/Makefile new file mode 100644 index 00000000000..a3ecec9c6cc --- /dev/null +++ b/sys/modules/netgraph/pred1/Makefile @@ -0,0 +1,6 @@ +# $FreeBSD$ + +KMOD= ng_pred1 +SRCS= ng_pred1.c + +.include