Include net/slcompress.c in the build of this module.

This commit is contained in:
Archie Cobbs 1999-12-08 18:51:13 +00:00
parent 17c770d7e5
commit 4562620cd4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=54329
4 changed files with 27 additions and 37 deletions

View File

@ -176,18 +176,6 @@ This node shuts down upon receipt of a
.Dv NGM_SHUTDOWN
control message, or when all hooks have been disconnected.
.Sh BUGS
When used as a loadable kernel module, this node type requires the file
.Dv "net/slcompress.c"
to have been compiled into the kernel. Currently the only way to insure this
is to include the
.Dv slip ,
.Dv ppp ,
or
.Dv i4bipr
pseudo-devices in your kernel compilation. In the future there should
be a kernel option that causes inclusion of this file without requiring
one of these drivers.
.Pp
Because the initialization routine in the kernel implementation of
Van Jacobsen compression initializes both compression and decompression
at once, this node does not allow compression and decompression to
@ -195,6 +183,14 @@ be enabled in separate operations. In order to enable one when
the other is already enabled, first both must be disabled, then
both enabled. This of course resets the node state. This restriction
may be lifted in a later version.
.Pp
When built as a loadable kernel module, this module includes the file
.Dv "net/slcompress.c" .
Although loading the module should fail if
.Dv "net/slcompress.c"
already exists in the kernel, currently it does not, and the duplicate
copies of the file do not interfere.
However, this may change in the future.
.Sh SEE ALSO
.Xr netgraph 4 ,
.Xr ng_ppp 8 ,

View File

@ -2,8 +2,10 @@
# $Whistle: Makefile,v 1.1 1999/01/24 06:48:07 archie Exp $
KMOD= ng_vjc
SRCS= ng_vjc.c
SRCS= ng_vjc.c slcompress.c
MAN8= ng_vjc.8
KMODDEPS= netgraph
.PATH: ${.CURDIR}/../../../net
.include <bsd.kmod.mk>

View File

@ -176,18 +176,6 @@ This node shuts down upon receipt of a
.Dv NGM_SHUTDOWN
control message, or when all hooks have been disconnected.
.Sh BUGS
When used as a loadable kernel module, this node type requires the file
.Dv "net/slcompress.c"
to have been compiled into the kernel. Currently the only way to insure this
is to include the
.Dv slip ,
.Dv ppp ,
or
.Dv i4bipr
pseudo-devices in your kernel compilation. In the future there should
be a kernel option that causes inclusion of this file without requiring
one of these drivers.
.Pp
Because the initialization routine in the kernel implementation of
Van Jacobsen compression initializes both compression and decompression
at once, this node does not allow compression and decompression to
@ -195,6 +183,14 @@ be enabled in separate operations. In order to enable one when
the other is already enabled, first both must be disabled, then
both enabled. This of course resets the node state. This restriction
may be lifted in a later version.
.Pp
When built as a loadable kernel module, this module includes the file
.Dv "net/slcompress.c" .
Although loading the module should fail if
.Dv "net/slcompress.c"
already exists in the kernel, currently it does not, and the duplicate
copies of the file do not interfere.
However, this may change in the future.
.Sh SEE ALSO
.Xr netgraph 4 ,
.Xr ng_ppp 8 ,

View File

@ -176,18 +176,6 @@ This node shuts down upon receipt of a
.Dv NGM_SHUTDOWN
control message, or when all hooks have been disconnected.
.Sh BUGS
When used as a loadable kernel module, this node type requires the file
.Dv "net/slcompress.c"
to have been compiled into the kernel. Currently the only way to insure this
is to include the
.Dv slip ,
.Dv ppp ,
or
.Dv i4bipr
pseudo-devices in your kernel compilation. In the future there should
be a kernel option that causes inclusion of this file without requiring
one of these drivers.
.Pp
Because the initialization routine in the kernel implementation of
Van Jacobsen compression initializes both compression and decompression
at once, this node does not allow compression and decompression to
@ -195,6 +183,14 @@ be enabled in separate operations. In order to enable one when
the other is already enabled, first both must be disabled, then
both enabled. This of course resets the node state. This restriction
may be lifted in a later version.
.Pp
When built as a loadable kernel module, this module includes the file
.Dv "net/slcompress.c" .
Although loading the module should fail if
.Dv "net/slcompress.c"
already exists in the kernel, currently it does not, and the duplicate
copies of the file do not interfere.
However, this may change in the future.
.Sh SEE ALSO
.Xr netgraph 4 ,
.Xr ng_ppp 8 ,