split the coda module in a device one, and a vfs one so that it works.

This commit is contained in:
christos 2012-04-26 03:03:53 +00:00
parent 44e0e5da1d
commit f7b1fda082
3 changed files with 15 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.105 2012/04/25 13:55:17 pgoyette Exp $
# $NetBSD: Makefile,v 1.106 2012/04/26 03:03:53 christos Exp $
.include <bsd.own.mk>
@ -76,6 +76,7 @@ SUBDIR+= udf
SUBDIR+= umap
SUBDIR+= union
SUBDIR+= usbverbose
SUBDIR+= vcoda
SUBDIR+= v7fs
SUBDIR+= vnd
SUBDIR+= tprof

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.1 2008/06/28 16:11:35 rumble Exp $
# $NetBSD: Makefile,v 1.2 2012/04/26 03:03:53 christos Exp $
.include "../Makefile.inc"
@ -6,7 +6,6 @@
KMOD= coda
SRCS= coda_namecache.c coda_psdev.c coda_subr.c coda_venus.c \
coda_vfsops.c coda_vnops.c
SRCS= coda_venus.c coda_vfsops.c coda_vnops.c
.include <bsd.kmodule.mk>

View File

@ -0,0 +1,11 @@
# $NetBSD: Makefile,v 1.1 2012/04/26 03:03:53 christos Exp $
.include "../Makefile.inc"
.PATH: ${S}/coda
KMOD= vcoda
SRCS= coda_psdev.c coda_namecache.c coda_subr.c
.include <bsd.kmodule.mk>