summaryrefslogtreecommitdiffstats
path: root/sbin/mount_ntfs
Commit message (Collapse)AuthorAgeFilesLines
* Tone down warning about the quality of the NTFS VFS module. It appears thatsobomax2009-01-201-5/+2
| | | | | not all developers share luigi opinion about quality of sysutils/fusefs-ntfs compared to our kernel NTFS module.
* In the CAVEATS section mention the fact that the NTFS kernel support isn'tsobomax2009-01-191-0/+6
| | | | | | | | | very well maintained and point user to sysutils/fusefs-ntfs, which at the time of this writing seems to be a better alternative. Suggested by: luigi MFC after: 2 weeks
* o Fix Dd format.maxim2007-11-181-1/+1
| | | | Pointed out by: ru
* o Mask maximum file permissions we get from mount_ntfs -mmaxim2007-11-171-1/+4
| | | | | | | | | with ACCESSPERMS. Document in mount_ntfs(8) only the nine low-order bits of mask are used (taken from mount_msdosfs(8)). PR: kern/114856 Submitted by: Ighighi MFC after: 1 month
* Use MOPT_END in favor of MOPT_NULL, which better describes the purporsedelphij2005-06-101-1/+1
| | | | of the macro.
* Add a handy macro to represent null mount option, MOPT_NULL, and makedelphij2005-06-011-1/+1
| | | | | | | | | | | | | | | | | | | use of the macro in sbin/mount*'s, by replacing: mopts[] = { MOPT_STDOPTS, { NULL } } With: mopts[] = { MOPT_STDOPTS, MOPT_NULL } This change will help to reduce the situation that we don't explicitly initialize "struct mntopt"'s. It should not contribute to any functional/logical changes as far as I can tell.
* Sync program's usage() with manpage's SYNOPSIS.ru2005-02-102-8/+8
|
* NOSHARED -> NO_SHAREDru2004-12-211-1/+1
|
* Include <sys/linker.h> for kldload().stefanf2004-05-241-0/+1
| | | | Approved by: das (mentor)
* Assorted markup, grammar, and spelling fixes.ru2004-05-171-21/+18
|
* style.Makefile(5):johan2004-02-231-1/+1
| | | | Use WARNS?= instead of WARNS=.
* Make msdosfs long filenames matching case insensitive again.fjoe2003-12-081-4/+1
| | | | | PR: 59765 Submitted by: Ryuichiro Imura <imura@ryu16.org>
* - Support for multibyte charsets in LIBICONV.fjoe2003-09-263-71/+103
| | | | | | | | - CD9660_ICONV, NTFS_ICONV and MSDOSFS_ICONV kernel options (with corresponding modules). - kiconv(3) for loadable charset conversion tables support. Submitted by: Ryuichiro Imura <imura@ryu16.org>
* s/filesystem/file system/g as discussed on -developerstrhodes2002-08-211-10/+10
|
* Now that the kernel is able to load modules itself,mux2002-08-031-35/+2
| | | | | | | | | | remove all the code which was trying to do so. This code was nasty in several ways, it was hiding the kernel bug where the kernel was unable to properly load a module, and it was quitting if it wasn't able to load the module. The consequence is that an ABI breakage of the vfsconf API would have broken *every* mount utility.
* The .Nm utilitycharnier2002-07-061-2/+2
|
* more file system > filesystemtrhodes2002-05-161-8/+8
|
* o __P removedimp2002-03-211-5/+5
| | | | o main prototype removed
* Default to WARNS=2.obrien2001-12-041-0/+2
| | | | | | Binary builds that cannot handle this must explicitly set WARNS=0. Reviewed by: mike
* Add a few articles to improve the readability of this manual page.murray2001-11-051-9/+9
| | | | | PR: docs/31583 Submitted by: setantae@submonkey.net
* mdoc(7) police: markup nits, improve -W option text,ru2001-09-111-5/+10
| | | | mount_msdos(8) is called mount_msdosfs(8) nowadays.
* Stole unicode translation table from mount_msdos. Add kernel codesemenu2001-09-083-2/+85
| | | | | | to support this translation. MFC after: 2 weeks
* Remove whitespace at EOL.dd2001-07-151-2/+2
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* mdoc(7) police: remove extraneous .Pp before and/or after .Sh.dd2001-07-091-1/+0
|
* Nuke unused variables.dd2001-06-241-1/+1
|
* - sys/n[tw]fs moved to sys/fs/n[tw]fsru2001-05-261-1/+1
| | | | - /usr/include/n[tw]fs moved to /usr/include/fs/n[tw]fs
* Removed -I${.CURDIR}/.../sys from CFLAGS.ru2001-05-181-1/+1
|
* wd1s1a -> ad1s1anik2001-04-041-2/+2
| | | | Submitted by: sanpei
* - Backout botched attempt to introduce MANSECT feature.ru2001-03-261-0/+1
| | | | - MAN[1-9] -> MAN.
* Set the default manual section for sbin/ to 8.ru2001-03-201-1/+0
|
* mdoc(7) police: use canonical form of .Dd macro.ru2000-12-111-1/+1
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-1/+1
|
* Remove single-space hard sentence breaks. These degrade the qualitysheldonh2000-03-011-4/+8
| | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc.
* mount* fixes from Martin Blapp <mb@imp.ch>:phk1999-10-091-15/+13
| | | | | | | | | | | | | | | | | Made mount more userfriendly (bad slashes are now filtered out) and we remove in mount_nfs trailing slashes if there are any. Fixed mount_xxx binarys to resolve with realpath(3) the mountpoint. Translate the deprecated nfs-syntax with '@' to ':' . The ':' syntax has now precedence, but '@' still works. Notify the user that the '@' syntax should not be used. PR: 7846 PR: 13692 Submitted by: Martin Blapp <mb@imp.ch> Reviewed by: phk
* $Id$ -> $FreeBSD$peter1999-08-283-3/+3
|
* Various man page cleanup:mpp1999-08-151-2/+2
| | | | | | | | | | | - Sort xrefs - FreeBSD.ORG -> FreeBSD.org - Properly xref RFCs. - Be consistent with section names as outlined in mdoc(7). - Other misc mdoc cleanup. PR: doc/13144 Submitted by: Alexey M. Zelkin <phantom@cris.net>
* Fix typos.jkoshy1999-05-041-9/+15
| | | | | PR: docs/11485 Submitted by: Kazuo Horikawa <horikawa@jp.freebsd.org>
* Added description of how they can access particularysemenu1999-02-191-1/+32
| | | | NTFS attribute and write files.
* Primary version.semenu1999-02-033-0/+350
Reviewed by: David O'Brien
OpenPOWER on IntegriCloud