Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/modules Update ffs, ext2fs, and tmpfs module makefiles t...



details:   https://anonhg.NetBSD.org/src/rev/84ce5ace3624
branches:  trunk
changeset: 779201:84ce5ace3624
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Thu May 10 07:51:34 2012 +0000

description:
Update ffs, ext2fs, and tmpfs module makefiles to add *_rename.c.

ok martin

diffstat:

 sys/modules/ext2fs/Makefile |  6 +++---
 sys/modules/ffs/Makefile    |  6 +++---
 sys/modules/tmpfs/Makefile  |  6 +++---
 3 files changed, 9 insertions(+), 9 deletions(-)

diffs (57 lines):

diff -r 38f348c7c304 -r 84ce5ace3624 sys/modules/ext2fs/Makefile
--- a/sys/modules/ext2fs/Makefile       Thu May 10 07:48:07 2012 +0000
+++ b/sys/modules/ext2fs/Makefile       Thu May 10 07:51:34 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.1 2008/06/28 16:11:35 rumble Exp $
+#      $NetBSD: Makefile,v 1.2 2012/05/10 07:51:34 riastradh Exp $
 
 .include "../Makefile.inc"
 
@@ -6,7 +6,7 @@
 
 KMOD=  ext2fs
 SRCS=  ext2fs_alloc.c ext2fs_balloc.c ext2fs_bmap.c ext2fs_bswap.c \
-       ext2fs_inode.c ext2fs_lookup.c ext2fs_readwrite.c ext2fs_subr.c \
-       ext2fs_vfsops.c ext2fs_vnops.c
+       ext2fs_inode.c ext2fs_lookup.c ext2fs_readwrite.c ext2fs_rename.c \
+       ext2fs_subr.c ext2fs_vfsops.c ext2fs_vnops.c
 
 .include <bsd.kmodule.mk>
diff -r 38f348c7c304 -r 84ce5ace3624 sys/modules/ffs/Makefile
--- a/sys/modules/ffs/Makefile  Thu May 10 07:48:07 2012 +0000
+++ b/sys/modules/ffs/Makefile  Thu May 10 07:51:34 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.7 2011/05/26 12:56:31 joerg Exp $
+#      $NetBSD: Makefile,v 1.8 2012/05/10 07:51:34 riastradh Exp $
 
 .include "../Makefile.inc"
 
@@ -11,8 +11,8 @@
 
 .PATH: ${S}/ufs/ufs
 SRCS=  ufs_bmap.c ufs_dirhash.c ufs_extattr.c ufs_ihash.c ufs_inode.c \
-       ufs_lookup.c ufs_quota.c ufs_quota1.c ufs_quota2.c ufs_vfsops.c \
-       ufs_vnops.c ufs_wapbl.c quota2_subr.c
+       ufs_lookup.c ufs_quota.c ufs_quota1.c ufs_quota2.c ufs_rename.c \
+       ufs_vfsops.c ufs_vnops.c ufs_wapbl.c quota2_subr.c
 
 .PATH: ${S}/ufs/ffs
 SRCS+= ffs_alloc.c ffs_balloc.c ffs_inode.c ffs_subr.c ffs_tables.c \
diff -r 38f348c7c304 -r 84ce5ace3624 sys/modules/tmpfs/Makefile
--- a/sys/modules/tmpfs/Makefile        Thu May 10 07:48:07 2012 +0000
+++ b/sys/modules/tmpfs/Makefile        Thu May 10 07:51:34 2012 +0000
@@ -1,11 +1,11 @@
-#      $NetBSD: Makefile,v 1.2 2010/06/22 18:32:08 rmind Exp $
+#      $NetBSD: Makefile,v 1.3 2012/05/10 07:51:34 riastradh Exp $
 
 .include "../Makefile.inc"
 
 .PATH: ${S}/fs/tmpfs
 
 KMOD=  tmpfs
-SRCS=  tmpfs_fifoops.c tmpfs_mem.c tmpfs_specops.c tmpfs_subr.c \
-       tmpfs_vfsops.c tmpfs_vnops.c
+SRCS=  tmpfs_fifoops.c tmpfs_mem.c tmpfs_rename.c tmpfs_specops.c \
+       tmpfs_subr.c tmpfs_vfsops.c tmpfs_vnops.c
 
 .include <bsd.kmodule.mk>



Home | Main Index | Thread Index | Old Index