diff options
author | wollman <wollman@FreeBSD.org> | 1995-03-20 19:25:49 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1995-03-20 19:25:49 +0000 |
commit | d590bce33da4c168566c5b55cd3eb2ed6a26cbc8 (patch) | |
tree | c2c7098a216ff371ba3b348605c769118282a33f /sys/modules/if_disc | |
parent | 1a3906ad112caa58da684aba47eeb9527568c9dc (diff) | |
download | FreeBSD-src-d590bce33da4c168566c5b55cd3eb2ed6a26cbc8.zip FreeBSD-src-d590bce33da4c168566c5b55cd3eb2ed6a26cbc8.tar.gz |
The discard, tunnel, SLIP, and PPP network interface pseudo-devices
are now dynamically loadable. It doesn't make sense to do the same
for the loopback.
Diffstat (limited to 'sys/modules/if_disc')
-rw-r--r-- | sys/modules/if_disc/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sys/modules/if_disc/Makefile b/sys/modules/if_disc/Makefile new file mode 100644 index 0000000..492de57 --- /dev/null +++ b/sys/modules/if_disc/Makefile @@ -0,0 +1,19 @@ +# $Id: Makefile,v 1.1 1994/09/22 22:12:59 wollman Exp $ + +.PATH: ${.CURDIR}/../../sys/net +KMOD= if_disc_mod +SRCS= if_disc.c bpfilter.h +NOMAN= +PSEUDO_LKM= +CFLAGS+= -I. + +NBPFILTER?= 0 +PROTOS?= -DINET + +CFLAGS+= ${PROTOS} +CLEANFILES+= bpfilter.h + +bpfilter.h: + echo "#define NBPFILTER ${NBPFILTER}" > bpfilter.h + +.include <bsd.kmod.mk> |