diff options
author | ugen <ugen@FreeBSD.org> | 1995-01-12 13:03:02 +0000 |
---|---|---|
committer | ugen <ugen@FreeBSD.org> | 1995-01-12 13:03:02 +0000 |
commit | 5f4f8671402dd52b656fcf298391ad3824cc1507 (patch) | |
tree | 4c9d3d7db0fd297b1d6789c151f4fed1f2dec3af /sys/modules/ipfw | |
parent | e681bf4b480572d8cab70fe559b89f2236586197 (diff) | |
download | FreeBSD-src-5f4f8671402dd52b656fcf298391ad3824cc1507.zip FreeBSD-src-5f4f8671402dd52b656fcf298391ad3824cc1507.tar.gz |
Firewall can be used as lkm module.To use it
firewall should *NOT* be compiled into kernel.
Then it can be loaded.This is misc module but i'v
got no problemms with it,so shouldn't you i suppose..
BTW this is very stupid to have one module in CVS
for ALL lkm's...
Diffstat (limited to 'sys/modules/ipfw')
-rw-r--r-- | sys/modules/ipfw/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/modules/ipfw/Makefile b/sys/modules/ipfw/Makefile new file mode 100644 index 0000000..306055c --- /dev/null +++ b/sys/modules/ipfw/Makefile @@ -0,0 +1,13 @@ +# $Id: Makefile,v 1.1 1994/09/21 23:27:09 wollman Exp $ + +.PATH: ${.CURDIR}/../../sys/netinet +KMOD= ipfw_mod +SRCS= ipfw_lkm.c ip_fw.c +NOMAN= +CFLAGS+= -DIPFIREWALL -DIPACCT +# +# If you want it verbose +#CFLAGS+= -DIPFIREWALL_VERBOSE +# + +.include <bsd.kmod.mk> |