Changes by: cha0smaster
Update of /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25434/ntfsprogs
Modified Files:
.cvsignore Makefile.am Makefile.in ntfsmount.c ntfsprogs.8.in
Log Message:
* ntfsmount: change default fmask and dmask to 0177 and 0077 respectively.
* Update NEWS, ntfsprogs.8.in, .cvsignore
* Update build system to install nftsmount man page.
Index: .cvsignore
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- .cvsignore 19 Jun 2005 13:20:40 -0000 1.2
+++ .cvsignore 5 Jul 2005 01:18:04 -0000 1.3
@@ -12,6 +12,7 @@ ntfsinfo
ntfslabel
ntfsls
ntfsmftalloc
+ntfsmount
ntfsmove
ntfsresize
ntfsrm
Index: Makefile.am
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs/Makefile.am,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -p -r1.33 -r1.34
--- Makefile.am 3 Jul 2005 00:18:41 -0000 1.33
+++ Makefile.am 5 Jul 2005 01:18:04 -0000 1.34
@@ -19,7 +19,8 @@ EXTRA_PROGRAMS = ntfsdump_logfile ntfsw
man_MANS = mkntfs.8 ntfsfix.8 ntfslabel.8 ntfsinfo.8 \
ntfsundelete.8 ntfsresize.8 ntfsprogs.8 ntfsls.8 \
- ntfsclone.8 ntfscluster.8 ntfscat.8 ntfscp.8
+ ntfsclone.8 ntfscluster.8 ntfscat.8 ntfscp.8 \
+ ntfsmount.8
EXTRA_MANS =
CLEANFILES = $(EXTRA_PROGRAMS)
Index: Makefile.in
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs/Makefile.in,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -p -r1.72 -r1.73
--- Makefile.in 3 Jul 2005 00:18:41 -0000 1.72
+++ Makefile.in 5 Jul 2005 01:18:04 -0000 1.73
@@ -54,8 +54,9 @@ DIST_COMMON = $(srcdir)/Makefile.am $(sr
$(srcdir)/ntfsclone.8.in $(srcdir)/ntfscluster.8.in \
$(srcdir)/ntfscp.8.in $(srcdir)/ntfsfix.8.in \
$(srcdir)/ntfsinfo.8.in $(srcdir)/ntfslabel.8.in \
- $(srcdir)/ntfsls.8.in $(srcdir)/ntfsprogs.8.in \
- $(srcdir)/ntfsresize.8.in $(srcdir)/ntfsundelete.8.in
+ $(srcdir)/ntfsls.8.in $(srcdir)/ntfsmount.8.in \
+ $(srcdir)/ntfsprogs.8.in $(srcdir)/ntfsresize.8.in \
+ $(srcdir)/ntfsundelete.8.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
@@ -63,8 +64,8 @@ am__configure_deps = $(am__aclocal_m4_de
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES = mkntfs.8 ntfscat.8 ntfsclone.8 ntfscluster.8 \
- ntfscp.8 ntfsfix.8 ntfsinfo.8 ntfslabel.8 ntfsls.8 ntfsprogs.8 \
- ntfsresize.8 ntfsundelete.8
+ ntfscp.8 ntfsfix.8 ntfsinfo.8 ntfslabel.8 ntfsls.8 ntfsmount.8 \
+ ntfsprogs.8 ntfsresize.8 ntfsundelete.8
@ENABLE_FUSE_MODULE_TRUE@am__EXEEXT_1 = ntfsmount$(EXEEXT)
am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(sbindir)" \
"$(DESTDIR)$(man8dir)"
@@ -294,7 +295,8 @@ target_vendor = @target_vendor@
LINK = $(STATIC_LINK) $(LIBTOOL_LINK)
man_MANS = mkntfs.8 ntfsfix.8 ntfslabel.8 ntfsinfo.8 \
ntfsundelete.8 ntfsresize.8 ntfsprogs.8 ntfsls.8 \
- ntfsclone.8 ntfscluster.8 ntfscat.8 ntfscp.8
+ ntfsclone.8 ntfscluster.8 ntfscat.8 ntfscp.8 \
+ ntfsmount.8
EXTRA_MANS =
CLEANFILES = $(EXTRA_PROGRAMS)
@@ -410,6 +412,8 @@ ntfslabel.8: $(top_builddir)/config.stat
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
ntfsls.8: $(top_builddir)/config.status $(srcdir)/ntfsls.8.in
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
+ntfsmount.8: $(top_builddir)/config.status $(srcdir)/ntfsmount.8.in
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
ntfsprogs.8: $(top_builddir)/config.status $(srcdir)/ntfsprogs.8.in
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
ntfsresize.8: $(top_builddir)/config.status $(srcdir)/ntfsresize.8.in
Index: ntfsmount.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs/ntfsmount.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -p -r1.6 -r1.7
--- ntfsmount.c 4 Jul 2005 16:34:14 -0000 1.6
+++ ntfsmount.c 5 Jul 2005 01:18:05 -0000 1.7
@@ -613,7 +613,8 @@ static int ntfs_fuse_init(void)
.state = NF_FreeClustersOutdate | NF_FreeMFTOutdate,
.uid = geteuid(),
.gid = getegid(),
- .fmask = 0111,
+ .fmask = 0177,
+ .dmask = 0077,
};
return 0;
}
Index: ntfsprogs.8.in
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs/ntfsprogs.8.in,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -p -r1.11 -r1.12
--- ntfsprogs.8.in 26 Jun 2005 20:09:26 -0000 1.11
+++ ntfsprogs.8.in 5 Jul 2005 01:18:05 -0000 1.12
@@ -51,6 +51,10 @@ or directories within it.
.PP
.BR ntfsls (8)
: List information about files in a directory residing on an NTFS partition.
+.SS ntfsmount
+.PP
+.BR ntfsmount (8)
+: NTFS module for FUSE.
.SS ntfsresize
.PP
.BR ntfsresize (8)
|