summaryrefslogtreecommitdiffstats
path: root/sys/modules/if_ppp
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>1999-04-28 01:18:13 +0000
committermsmith <msmith@FreeBSD.org>1999-04-28 01:18:13 +0000
commitae853b3a1196502c15e20f1ae8a138a8b83c9597 (patch)
tree593463288461208718df12bd92fea82449507a1e /sys/modules/if_ppp
parentaf7e9be5cce9a2ceb819f00b3f58014d23ab57cd (diff)
downloadFreeBSD-src-ae853b3a1196502c15e20f1ae8a138a8b83c9597.zip
FreeBSD-src-ae853b3a1196502c15e20f1ae8a138a8b83c9597.tar.gz
Allow loadable interface drivers with BPF support to be loaded into a kernel
that doesn't have it. This is achieved by having minimal do-nothing stubs enabled when there are no bpfilter devices configured. Driver modules should be built with BPF enabled for maximum convenience (but can be built without it for maximum performance).
Diffstat (limited to 'sys/modules/if_ppp')
-rw-r--r--sys/modules/if_ppp/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/if_ppp/Makefile b/sys/modules/if_ppp/Makefile
index 97c3b3c..6be6fdb 100644
--- a/sys/modules/if_ppp/Makefile
+++ b/sys/modules/if_ppp/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.15 1998/10/16 04:30:44 peter Exp $
+# $Id: Makefile,v 1.16 1999/01/17 20:53:48 peter Exp $
.PATH: ${.CURDIR}/../../net
KMOD= if_ppp
@@ -10,7 +10,7 @@ CLEANFILES+= vnode_if.c vnode_if.h
NPPP?= 2
PPP_BSDCOMP?= 1 # 0/1
PPP_DEFLATE?= 1 # 0/1
-PPP_FILTER?= 0 # 0/1 - requires bpf to be configured in kernel
+PPP_FILTER?= 1 # 0/1 - requires bpf to be configured in kernel
PPP_INET?= 1 # 0/1 - requires INET to be configured in kernel
PPP_IPX?= 0 # 0/1 - requires IPX to be configured in kernel
OpenPOWER on IntegriCloud