* mount.cc (struct opt): Remove posix option.
This commit is contained in:
parent
08604f02bc
commit
baf77a53b0
|
@ -1,3 +1,7 @@
|
||||||
|
2003-07-03 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* mount.cc (struct opt): Remove posix option.
|
||||||
|
|
||||||
2003-07-03 Christopher Faylor <cgf@redhat.com>
|
2003-07-03 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
* mount.cc (longopts): Add long "options" keyword.
|
* mount.cc (longopts): Add long "options" keyword.
|
||||||
|
|
|
@ -174,8 +174,7 @@ struct opt
|
||||||
{"exec", MOUNT_EXEC, 0},
|
{"exec", MOUNT_EXEC, 0},
|
||||||
{"notexec", MOUNT_NOTEXEC, 0},
|
{"notexec", MOUNT_NOTEXEC, 0},
|
||||||
{"cygexec", MOUNT_CYGWIN_EXEC, 0},
|
{"cygexec", MOUNT_CYGWIN_EXEC, 0},
|
||||||
{"suid", 0, 0},
|
{"nosuid", 0, 0},
|
||||||
{"posix", MOUNT_ENC, 0},
|
|
||||||
{"managed", MOUNT_ENC, 0}
|
{"managed", MOUNT_ENC, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -648,6 +648,23 @@ mount table. It also makes moving your settings to a different machine
|
||||||
much easier.
|
much easier.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
The <literal>-o</literal> option is the method via which various options about
|
||||||
|
the mount point may be recorded. The following options are available (note that
|
||||||
|
most of the options are duplicates of other mount flags):</para>
|
||||||
|
|
||||||
|
<screen>
|
||||||
|
user - mount lives user-specific mount
|
||||||
|
system - mount lives in system table (default)
|
||||||
|
binary - files default to binary mode (default)
|
||||||
|
text - files default to CRLF text mode line endings
|
||||||
|
exec - files below mount point are all executable
|
||||||
|
notexec - files below mount point are not executable
|
||||||
|
cygexec - files below mount point are all cygwin executables
|
||||||
|
nosuid - no suid files are allowed (currently unimplemented)
|
||||||
|
managed - directory is managed by cygwin. Mixed case and special
|
||||||
|
characters in filenames are allowed.
|
||||||
|
</screen>
|
||||||
</sect3>
|
</sect3>
|
||||||
|
|
||||||
<sect3><title>Cygdrive mount points</title>
|
<sect3><title>Cygdrive mount points</title>
|
||||||
|
|
Loading…
Reference in New Issue