aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount_msdosfs
Commit message (Collapse)AuthorAgeFilesLines
* $Id$ -> $FreeBSD$Peter Wemm1999-08-283-3/+3
| | | | Notes: svn path=/head/; revision=50476
* This lets you specify "gemdosfs", "shortnames", "longnames", andJordan K. Hubbard1999-06-182-4/+21
| | | | | | | | | | | | | | | | "nowin95" as arguments to the "-o" flag, as alternatives to "-G", "-s", "-l", and "-9"; when running "mount_msdos" by hand, that doesn't let you do anything you couldn't already do, but if you're letting "mount" run it, it lets you specify those options, which is especially useful if, for example, you have an entry in "/etc/fstab" for some file system, with "noauto" set, so you can conveniently mount a DOS partition from a removable drive and force it to treat the file system as VFAT rather than boring old FAT. Submitted by: Guy Harris <guy@netapp.com> Notes: svn path=/head/; revision=48002
* Update to match rev. 1.28 of msdosfs_lookup.c.Dmitrij Tejblum1999-01-111-11/+2
| | | | Notes: svn path=/head/; revision=42534
* Split usage string.Philippe Charnier1998-06-302-8/+14
| | | | Notes: svn path=/head/; revision=37277
* Add more info about special characters in dos2unix/unix2dos tablesAndrey A. Chernov1998-03-011-3/+11
| | | | Notes: svn path=/head/; revision=33941
* Add more info about -W optionAndrey A. Chernov1998-02-231-2/+4
| | | | Notes: svn path=/head/; revision=33771
* Note that default local charset assumed as ISO 8859-1Andrey A. Chernov1998-02-231-1/+3
| | | | Notes: svn path=/head/; revision=33770
* Implement loadable DOS<->local conversion tables for DOS namesAndrey A. Chernov1998-02-234-21/+92
| | | | | | | Additionly load toupper table to create DOS names always in uppercase Notes: svn path=/head/; revision=33769
* Implement loadable upper->lower local conversion tableAndrey A. Chernov1998-02-232-7/+30
| | | | | | | Recently introduced -w renamed to -W Notes: svn path=/head/; revision=33761
* Add missing DESTDIRAndrey A. Chernov1998-02-231-2/+2
| | | | Notes: svn path=/head/; revision=33759
* Add loadable local<->Unicode conversion support for Win95 namesAndrey A. Chernov1998-02-223-5/+59
| | | | | | | Note: DOS names still not work and require similar changes Notes: svn path=/head/; revision=33749
* Support for FAT32 partitions.Jordan K. Hubbard1998-02-182-26/+86
| | | | | | | | Submitted by: Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru> Obtained from: NetBSD Notes: svn path=/head/; revision=33549
* Removed definition of _NEW_VFSCONF. The new vfsconf interface is nowBruce Evans1998-01-201-2/+1
| | | | | | | the default. Notes: svn path=/head/; revision=32645
* Fixed some FUD (don't blame current msdosfs for old msdosfs+vfs_bio bugs).Bruce Evans1997-12-191-8/+17
| | | | Notes: svn path=/head/; revision=31877
* Don't install mount_msdos setuid root. Lite2's mount(2) handlesBruce Evans1997-10-211-4/+1
| | | | | | | | | permissions centrally and a setuid root mount utility just breaks its security. There was no new breakage in practice because mfdosfs_mount() still checks the ruid. Notes: svn path=/head/; revision=30622
* Support all mount flags that are supported in the kernel.Bruce Evans1997-08-251-1/+4
| | | | Notes: svn path=/head/; revision=28731
* compare return value from getopt against -1 rather than EOF, per the finalWarner Losh1997-03-291-2/+2
| | | | | | | posix standard on the topic. Notes: svn path=/head/; revision=24359
* Updated mount_msdos to use the Lite2 getvfsbyname() interface.Bruce Evans1997-03-032-12/+14
| | | | Notes: svn path=/head/; revision=23335
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-223-3/+3
| | | | Notes: svn path=/head/; revision=22990
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-143-3/+3
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* Don't use __dead or __pure in user code. They were obfuscationsBruce Evans1996-09-141-2/+2
| | | | | | | | | for gcc >= 2.5 and no-ops for gcc >= 2.6. Converted to use __dead2 or __pure2 where it wasn't already done, except in math.h where use of __pure was mostly wrong. Notes: svn path=/head/; revision=18286
* One program I missed in removing MOUNT_* constants.Garrett Wollman1996-05-131-17/+21
| | | | Notes: svn path=/head/; revision=15771
* Add a small message to the ``CAVEATS'' section saying if you get theGary Palmer1996-04-031-1/+9
| | | | | | | | warning about the root directory, then you could corrupt your filesystem if you write to it. Someone, please, feel free to improve this :-) Notes: svn path=/head/; revision=15034
* Fix another path that was broken by moving things to sbin/i386.Bruce Evans1994-12-041-2/+2
| | | | Notes: svn path=/head/; revision=4949
* NetBSD -> FreeBSDNate Williams1994-11-191-4/+4
| | | | | | | (Poul, bring this into 2.0 please) Notes: svn path=/head/; revision=4677
* Add support for filesystem-specific `-o' options, and re-implement theGarrett Wollman1994-11-011-2/+2
| | | | | | | | | | | | | | | | | | | most common cd9660 and nfs options like God intended them. (It is now possible to say mount -o ro,soft,bg,intr there:/foo/bar /foo/bar again.) This whole getmntopt() business is an incredible botch; it never should have been anything more than a wrapper around getsubopt(3). Because if the way the current hackaround is implemented, options which take arguments (like the old `rsize' and `wsize') are still unavailable, and must be accessed the new, broken way. (It's unimaginable how Berkeley managed to screw up one of the few things about NFS that Sun actually got right to begin with!) Notes: svn path=/head/; revision=4065
* Automatically load NFS and a bevy of other filesystems.Garrett Wollman1994-09-221-2/+11
| | | | Notes: svn path=/head/; revision=2999
* Added mount_msdos.Doug Rabson1994-09-193-0/+326
Obtained from: NetBSD Notes: svn path=/head/; revision=2892