diff options
author | eivind <eivind@FreeBSD.org> | 1998-01-24 02:54:56 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1998-01-24 02:54:56 +0000 |
commit | 71ddd313905625e7a30459009de6972aa2fd42a2 (patch) | |
tree | 6d6142bad3e6171bba77304251f69f1a8ab13c2d /sys/net/bpf.c | |
parent | 71161cca1452c50ca0ea535bae82c1df9c67663c (diff) | |
download | FreeBSD-src-71ddd313905625e7a30459009de6972aa2fd42a2.zip FreeBSD-src-71ddd313905625e7a30459009de6972aa2fd42a2.tar.gz |
Make all file-system (MFS, FFS, NFS, LFS, DEVFS) related option new-style.
This introduce an xxxFS_BOOT for each of the rootable filesystems.
(Presently not required, but encouraged to allow a smooth move of option *FS
to opt_dontuse.h later.)
LFS is temporarily disabled, and will be re-enabled tomorrow.
Diffstat (limited to 'sys/net/bpf.c')
-rw-r--r-- | sys/net/bpf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/net/bpf.c b/sys/net/bpf.c index fa41365..d118db6 100644 --- a/sys/net/bpf.c +++ b/sys/net/bpf.c @@ -37,7 +37,7 @@ * * @(#)bpf.c 8.2 (Berkeley) 3/28/94 * - * $Id: bpf.c,v 1.35 1997/10/03 21:32:05 julian Exp $ + * $Id: bpf.c,v 1.36 1997/11/18 16:29:53 bde Exp $ */ #include "bpfilter.h" @@ -78,6 +78,9 @@ #include <netinet/if_ether.h> #include <sys/kernel.h> #include <sys/sysctl.h> + +#include "opt_devfs.h" + #ifdef DEVFS #include <sys/devfsext.h> #endif /*DEVFS*/ |