diff options
Diffstat (limited to 'winsup/cygwin')
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/path.cc | 2 | ||||
-rwxr-xr-x | winsup/cygwin/postinstall | 10 |
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 |