Module Name:    src
Committed By:   pooka
Date:           Thu Nov 26 07:30:24 UTC 2009

Modified Files:
        src/sys/rump/librump/rumpvfs: Makefile.rumpvfs

Log Message:
Include kern_module_vfs and the modctl() syscall.  The modctl()
syscall is here because module loading is a vfs operation.
Theoretically you shouldn't be able to have modules without vfs
support.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/rump/librump/rumpvfs/Makefile.rumpvfs

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/librump/rumpvfs/Makefile.rumpvfs
diff -u src/sys/rump/librump/rumpvfs/Makefile.rumpvfs:1.18 src/sys/rump/librump/rumpvfs/Makefile.rumpvfs:1.19
--- src/sys/rump/librump/rumpvfs/Makefile.rumpvfs:1.18	Tue Oct 20 10:42:41 2009
+++ src/sys/rump/librump/rumpvfs/Makefile.rumpvfs	Thu Nov 26 07:30:24 2009
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.rumpvfs,v 1.18 2009/10/20 10:42:41 pooka Exp $
+#	$NetBSD: Makefile.rumpvfs,v 1.19 2009/11/26 07:30:24 pooka Exp $
 #
 
 .include "${RUMPTOP}/Makefile.rump"
@@ -29,6 +29,9 @@
 	vfs_hooks.c vfs_init.c vfs_lockf.c vfs_lookup.c vfs_subr.c	\
 	vfs_syscalls.c vfs_vnops.c vfs_wapbl.c vfs_xattr.c
 
+# sys/kern module (and syscall)
+SRCS+=	kern_module_vfs.c sys_module.c
+
 # sys/uvm
 SRCS+=	uvm_vnode.c
 

Reply via email to