summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2008-04-06 09:56:42 +0000
committerCorinna Vinschen <corinna@vinschen.de>2008-04-06 09:56:42 +0000
commit93c5415116fd3547ad594ef148ead6b7eff403e3 (patch)
tree6c575492134d9889331cc3f189f7342698f8282f /winsup/cygwin
parentac6f159cd79545dc7a31971c95e8809cda2303ca (diff)
downloadcygnal-93c5415116fd3547ad594ef148ead6b7eff403e3.tar.gz
cygnal-93c5415116fd3547ad594ef148ead6b7eff403e3.tar.bz2
cygnal-93c5415116fd3547ad594ef148ead6b7eff403e3.zip
* path.cc (struct opt): Rename "system" to "nouser".
* postinsatll: Ditto.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/path.cc2
-rwxr-xr-xwinsup/cygwin/postinstall10
3 files changed, 11 insertions, 6 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index bb38edc25..2699ad949 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2008-04-06 Corinna Vinschen <corinna@vinschen.de>
+
+ * path.cc (struct opt): Rename "system" to "nouser".
+ * postinsatll: Ditto.
+
2008-04-05 Corinna Vinschen <corinna@vinschen.de>
* postinstall: New script.
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc
index df6ee380f..e9c4870d0 100644
--- a/winsup/cygwin/path.cc
+++ b/winsup/cygwin/path.cc
@@ -2340,7 +2340,7 @@ struct opt
} oopts[] =
{
{"user", MOUNT_SYSTEM, 1},
- {"system", MOUNT_SYSTEM, 0},
+ {"nouser", MOUNT_SYSTEM, 0},
{"binary", MOUNT_BINARY, 0},
{"text", MOUNT_BINARY, 1},
{"exec", MOUNT_EXEC, 0},
diff --git a/winsup/cygwin/postinstall b/winsup/cygwin/postinstall
index 9e9319e33..894a7c0c3 100755
--- a/winsup/cygwin/postinstall
+++ b/winsup/cygwin/postinstall
@@ -70,11 +70,11 @@ then
# with the filesystem. It is formatted as a comma separated list of
# options. It contains at least the type of mount (binary or text) plus
# any additional options appropriate to the filesystem type. Recognized
-# options are binary, text, system, user, exec, notexec, cygexec, nosuid,
+# options are binary, text, nouser, user, exec, notexec, cygexec, nosuid,
# managed. For a description of the options see the user's guide. Note
-# that system mount points are not overridable by a later call to
+# that nouser mount points are not overridable by a later call to
# mount(2). This is only possible for user mount points. Mount points
-# are by default system mount points, unless you specify the option user.
+# are by default nouser mount points, unless you specify the option user.
#
# The fifth (fs_freq) and sixth (fs_passno) field are ignored. They are
# so far only specified to keep a Linux-like fstab file layout.
@@ -111,8 +111,8 @@ then
# none /mnt cygdrive binary 0 0
#
-${CYGROOT//\\//}/bin /usr/bin ${FS_TYPE} binary,system 0 0
-${CYGROOT//\\//}/lib /usr/lib ${FS_TYPE} binary,system 0 0
+${CYGROOT//\\//}/bin /usr/bin ${FS_TYPE} binary 0 0
+${CYGROOT//\\//}/lib /usr/lib ${FS_TYPE} binary 0 0
# This is default anyway:
# none /cygdrive cygdrive binary,user 0 0
EOF