aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorUgen J.S. Antsilevich <ugen@FreeBSD.org>1995-01-12 13:03:02 +0000
committerUgen J.S. Antsilevich <ugen@FreeBSD.org>1995-01-12 13:03:02 +0000
commitad6e6b7d58bb043c60dab175cc84b6ff63eecdca (patch)
tree4c9d3d7db0fd297b1d6789c151f4fed1f2dec3af /sys/modules
parent98bee366954d0d991a21f2801ecdf735a17a786e (diff)
downloadsrc-ad6e6b7d58bb043c60dab175cc84b6ff63eecdca.tar.gz
src-ad6e6b7d58bb043c60dab175cc84b6ff63eecdca.zip
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...
Notes
Notes: svn path=/head/; revision=5540
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/ipfw/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/modules/ipfw/Makefile b/sys/modules/ipfw/Makefile
new file mode 100644
index 000000000000..306055c8fdac
--- /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>