aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount_ntfs
Commit message (Collapse)AuthorAgeFilesLines
* Garbage collect NTFS bits which are now completely disconnected fromAttilio Rao2013-03-023-473/+0
| | | | | | | | | the tree since few months. This patch is not targeted for MFC. Notes: svn path=/head/; revision=247665
* Remove trailing whitespace.Jaakko Heinonen2012-01-281-1/+1
| | | | Notes: svn path=/head/; revision=230642
* Change checkpath() to not exit on error. This is a prerequisite forJaakko Heinonen2012-01-161-1/+2
| | | | | | | | | | fixing the mount(8) "failok" option. PR: 163668 Reviewed by: Garrett Cooper, delphij (previous version) Notes: svn path=/head/; revision=230226
* mdoc: move CAVEATS, BUGS and SECURITY CONSIDERATIONS sections to theUlrich Spörlein2010-05-131-8/+8
| | | | | | | | | | | | | | bottom of the manpages and order them consistently. GNU groff doesn't care about the ordering, and doesn't even mention CAVEATS and SECURITY CONSIDERATIONS as common sections and where to put them. Found by: mdocml lint run Reviewed by: ru Notes: svn path=/head/; revision=208027
* mount_ntfs(8): make WARNS=6 cleanUlrich Spörlein2010-02-272-12/+6
| | | | | | | | PR: bin/140000 Approved by: ed (co-mentor) Notes: svn path=/head/; revision=204404
* Tone down warning about the quality of the NTFS VFS module. It appears thatMaxim Sobolev2009-01-201-5/+2
| | | | | | | | not all developers share luigi opinion about quality of sysutils/fusefs-ntfs compared to our kernel NTFS module. Notes: svn path=/head/; revision=187459
* In the CAVEATS section mention the fact that the NTFS kernel support isn'tMaxim Sobolev2009-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 Notes: svn path=/head/; revision=187436
* o Fix Dd format.Maxim Konovalov2007-11-181-1/+1
| | | | | | | Pointed out by: ru Notes: svn path=/head/; revision=173727
* o Mask maximum file permissions we get from mount_ntfs -mMaxim Konovalov2007-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 Notes: svn path=/head/; revision=173695
* Use MOPT_END in favor of MOPT_NULL, which better describes the purporseXin LI2005-06-101-1/+1
| | | | | | | of the macro. Notes: svn path=/head/; revision=147242
* Add a handy macro to represent null mount option, MOPT_NULL, and makeXin LI2005-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. Notes: svn path=/head/; revision=146853
* Sync program's usage() with manpage's SYNOPSIS.Ruslan Ermilov2005-02-102-8/+8
| | | | Notes: svn path=/head/; revision=141611
* NOSHARED -> NO_SHAREDRuslan Ermilov2004-12-211-1/+1
| | | | Notes: svn path=/head/; revision=139112
* Include <sys/linker.h> for kldload().Stefan Farfeleder2004-05-241-0/+1
| | | | | | | Approved by: das (mentor) Notes: svn path=/head/; revision=129660
* Assorted markup, grammar, and spelling fixes.Ruslan Ermilov2004-05-171-21/+18
| | | | Notes: svn path=/head/; revision=129327
* style.Makefile(5):Johan Karlsson2004-02-231-1/+1
| | | | | | | Use WARNS?= instead of WARNS=. Notes: svn path=/head/; revision=126178
* Make msdosfs long filenames matching case insensitive again.Max Khon2003-12-081-4/+1
| | | | | | | | PR: 59765 Submitted by: Ryuichiro Imura <imura@ryu16.org> Notes: svn path=/head/; revision=123293
* - Support for multibyte charsets in LIBICONV.Max Khon2003-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> Notes: svn path=/head/; revision=120492
* s/filesystem/file system/g as discussed on -developersTom Rhodes2002-08-211-10/+10
| | | | Notes: svn path=/head/; revision=102231
* Now that the kernel is able to load modules itself,Maxime Henrion2002-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. Notes: svn path=/head/; revision=101270
* The .Nm utilityPhilippe Charnier2002-07-061-2/+2
| | | | Notes: svn path=/head/; revision=99501
* more file system > filesystemTom Rhodes2002-05-161-8/+8
| | | | Notes: svn path=/head/; revision=96707
* o __P removedWarner Losh2002-03-211-5/+5
| | | | | | | o main prototype removed Notes: svn path=/head/; revision=92882
* Default to WARNS=2.David E. O'Brien2001-12-041-0/+2
| | | | | | | | | Binary builds that cannot handle this must explicitly set WARNS=0. Reviewed by: mike Notes: svn path=/head/; revision=87325
* Add a few articles to improve the readability of this manual page.Murray Stokely2001-11-051-9/+9
| | | | | | | | PR: docs/31583 Submitted by: setantae@submonkey.net Notes: svn path=/head/; revision=86075
* mdoc(7) police: markup nits, improve -W option text,Ruslan Ermilov2001-09-111-5/+10
| | | | | | | mount_msdos(8) is called mount_msdosfs(8) nowadays. Notes: svn path=/head/; revision=83331
* Stole unicode translation table from mount_msdos. Add kernel codeSemen Ustimenko2001-09-083-2/+85
| | | | | | | | | to support this translation. MFC after: 2 weeks Notes: svn path=/head/; revision=83229
* Remove whitespace at EOL.Dima Dorfman2001-07-151-2/+2
| | | | Notes: svn path=/head/; revision=79754
* mdoc(7) police: removed HISTORY info from the .Os call.Ruslan Ermilov2001-07-101-1/+1
| | | | Notes: svn path=/head/; revision=79530
* mdoc(7) police: remove extraneous .Pp before and/or after .Sh.Dima Dorfman2001-07-091-1/+0
| | | | Notes: svn path=/head/; revision=79454
* Nuke unused variables.Dima Dorfman2001-06-241-1/+1
| | | | Notes: svn path=/head/; revision=78735
* - sys/n[tw]fs moved to sys/fs/n[tw]fsRuslan Ermilov2001-05-261-1/+1
| | | | | | | - /usr/include/n[tw]fs moved to /usr/include/fs/n[tw]fs Notes: svn path=/head/; revision=77223
* Removed -I${.CURDIR}/.../sys from CFLAGS.Ruslan Ermilov2001-05-181-1/+1
| | | | Notes: svn path=/head/; revision=76812
* wd1s1a -> ad1s1aNik Clayton2001-04-041-2/+2
| | | | | | | Submitted by: sanpei Notes: svn path=/head/; revision=75154
* - Backout botched attempt to introduce MANSECT feature.Ruslan Ermilov2001-03-261-0/+1
| | | | | | | - MAN[1-9] -> MAN. Notes: svn path=/head/; revision=74815
* Set the default manual section for sbin/ to 8.Ruslan Ermilov2001-03-201-1/+0
| | | | Notes: svn path=/head/; revision=74531
* mdoc(7) police: use canonical form of .Dd macro.Ruslan Ermilov2000-12-111-1/+1
| | | | Notes: svn path=/head/; revision=69858
* mdoc(7) police: use the new features of the Nm macro.Ruslan Ermilov2000-11-201-1/+1
| | | | Notes: svn path=/head/; revision=68960
* Remove single-space hard sentence breaks. These degrade the qualitySheldon Hearn2000-03-011-4/+8
| | | | | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc. Notes: svn path=/head/; revision=57668
* mount* fixes from Martin Blapp <mb@imp.ch>:Poul-Henning Kamp1999-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 Notes: svn path=/head/; revision=52055
* $Id$ -> $FreeBSD$Peter Wemm1999-08-283-3/+3
| | | | Notes: svn path=/head/; revision=50476
* Various man page cleanup:Mike Pritchard1999-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> Notes: svn path=/head/; revision=49822
* Fix typos.Joseph Koshy1999-05-041-9/+15
| | | | | | | | PR: docs/11485 Submitted by: Kazuo Horikawa <horikawa@jp.freebsd.org> Notes: svn path=/head/; revision=46398
* Added description of how they can access particularySemen Ustimenko1999-02-191-1/+32
| | | | | | | NTFS attribute and write files. Notes: svn path=/head/; revision=44143
* Primary version.Semen Ustimenko1999-02-033-0/+350
Reviewed by: David O'Brien Notes: svn path=/cvs2svn/branches/SEMENU/; revision=43548