From ffc45a6f38ccebcfc3c288c480c7d4b50ce07097 Mon Sep 17 00:00:00 2001 From: tjr Date: Sun, 7 Sep 2003 07:43:10 +0000 Subject: Add support for the Coda 6.x venus<->kernel interface. This extends FIDs to be 128-bits wide and adds support for realms. Add a new CODA_COMPAT_5 option, which requests support for the old Coda 5.x interface instead of the new one. Create a new coda5.ko module that supports the 5.x interface, and make the existing coda.ko module use the new 6.x interface. These modules cannot both be loaded at the same time. Obtained from: Jan Harkes & the coda-6.0.2 distribution, NetBSD (drochner) (CODA_COMPAT_5 option). --- sys/modules/coda/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'sys/modules/coda') diff --git a/sys/modules/coda/Makefile b/sys/modules/coda/Makefile index c04d1a1..9274f2f 100644 --- a/sys/modules/coda/Makefile +++ b/sys/modules/coda/Makefile @@ -5,11 +5,15 @@ KMOD= coda SRCS= vnode_if.h \ coda_fbsd.c coda_namecache.c coda_psdev.c coda_subr.c \ - coda_venus.c coda_vfsops.c coda_vnops.c vcoda.h + coda_venus.c coda_vfsops.c coda_vnops.c vcoda.h \ + opt_coda.h -CLEANFILES= vcoda.h +CLEANFILES= vcoda.h opt_coda.h vcoda.h: echo "#define NVCODA 4" > vcoda.h +opt_coda.h: + echo >opt_coda.h + .include -- cgit v1.1