diff options
| author | pooka <pooka@NetBSD.org> | 2010-01-25 22:21:28 +0000 |
|---|---|---|
| committer | pooka <pooka@NetBSD.org> | 2010-01-25 22:21:28 +0000 |
| commit | 27d2b45e99daf375559faa6a7fb458ef4da405ae (patch) | |
| tree | ff9262f3c7c21ff2d62211793083202ae3ad896b /sys/modules | |
| parent | b2bb0f38d563d410d08933876273fb09a79f4936 (diff) | |
add bpf kmod
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/Makefile | 3 | ||||
| -rw-r--r-- | sys/modules/bpf/Makefile | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index b5b32b0ec8a..ce76be721be 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2010/01/05 20:49:04 dyoung Exp $ +# $NetBSD: Makefile,v 1.38 2010/01/25 22:21:28 pooka Exp $ .include <bsd.own.mk> @@ -8,6 +8,7 @@ SUBDIR= accf_dataready SUBDIR+= accf_httpready SUBDIR+= adosfs SUBDIR+= aio +SUBDIR+= bpf SUBDIR+= cd9660 SUBDIR+= coda SUBDIR+= coda5 diff --git a/sys/modules/bpf/Makefile b/sys/modules/bpf/Makefile new file mode 100644 index 00000000000..742b6ae408e --- /dev/null +++ b/sys/modules/bpf/Makefile @@ -0,0 +1,13 @@ +# $NetBSD: Makefile,v 1.1 2010/01/25 22:21:28 pooka Exp $ +# + +.include "../Makefile.inc" + +.PATH: ${S}/net + +KMOD= bpf +# XXX: bpf_filter.c maybe needs to be its own module (or made +# inseparable from bpfilter?) +SRCS= bpf.c bpf_filter.c + +.include <bsd.kmodule.mk> |
