Build bits for ng_deflate(4) and ng_pred1(4).

This commit is contained in:
Gleb Smirnoff 2006-12-29 13:16:43 +00:00
parent 9b3d1b0253
commit 9e6f1d3be4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=165629
7 changed files with 22 additions and 0 deletions

View File

@ -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 \

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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 \

View File

@ -0,0 +1,6 @@
# $FreeBSD$
KMOD= ng_deflate
SRCS= ng_deflate.c
.include <bsd.kmod.mk>

View File

@ -0,0 +1,6 @@
# $FreeBSD$
KMOD= ng_pred1
SRCS= ng_pred1.c
.include <bsd.kmod.mk>