diff options
author | Christopher Faylor <me@cgf.cx> | 2009-05-14 03:25:45 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2009-05-14 03:25:45 +0000 |
commit | e951743709de78ef8149fcfbce88c07ef03ed4aa (patch) | |
tree | 5b717c9e0551928250957e9e5b7d59770c94a81d /winsup/cygwin/ChangeLog | |
parent | 9708e8cde2d787305e07d11a24c5eb342fc3c35f (diff) | |
download | cygnal-e951743709de78ef8149fcfbce88c07ef03ed4aa.tar.gz cygnal-e951743709de78ef8149fcfbce88c07ef03ed4aa.tar.bz2 cygnal-e951743709de78ef8149fcfbce88c07ef03ed4aa.zip |
cygwin ChangeLog
2009-05-13 Corinna Vinschen <corinna@vinschen.de>
Christopher Faylor <me+cygwin@cgf.cx>
* mount.cc (mount_info::got_usr_bin): Define.
(mount_info::got_usr_lib): Ditto.
(mount_info::root_idx): Ditto.
(mount_info::create_root_entry): Create root entry as immutable and
flag as automatic.
(mount_info::init): Remove "Huh? No /etc/fstab..." warning.
Unconditionally call from_fstab for user and system tables. Fill in
/usr/bin and /usr/lib if they have not been specified in /etc/fstab.
(oopts): Alphabetize. Add "override" option to allow overriding
immutable mount points.
(mount_info::add_item): Accommodate new MOUNT_IMMUTABLE flag intended
for root mount.
(mount_info::add_item): Detect "/usr/bin", "/usr/lib", and "/" and set
appropriate global state.
(fillout_mntent): Add ,auto to mount points added by Cygwin DLL.
(mount): Remove masking of MOUNT_SYSTEM. Allow user to shoot
themselves. Add comment.
* mount.h (mount_info::got_usr_bin): Declare.
(mount_info::got_usr_lib): Ditto.
(mount_info::root_idx): Ditto.
* include/sys/mount.h: Reformat enum.
Add MOUNT_{OVERRIDE,IMMUTABLE,AUTOMATIC}.
doc ChangeLog
2009-05-13 Corinna Vinschen <corinna@vinschen.de>
Christopher Faylor <me+cygwin@cgf.cx>
* pathnames.sgml (mount-table): Sort mount options and add override
option. Add description of root mount handling.
utils ChangeLog
2009-05-13 Corinna Vinschen <corinna@vinschen.de>
Christopher Faylor <me+cygwin@cgf.cx>
* mount.cc (oopts): Sort. Add override option. Add dummy "auto"
option for consistency.
(mount_entries): Avoid adding auto-mounted entries to -m output.
* utils.sgml: Sort mount options. Add description of override option.
Diffstat (limited to 'winsup/cygwin/ChangeLog')
-rw-r--r-- | winsup/cygwin/ChangeLog | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 869196956..da7eb81bf 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,4 +1,30 @@ 2009-05-13 Corinna Vinschen <corinna@vinschen.de> + Christopher Faylor <me+cygwin@cgf.cx> + + * mount.cc (mount_info::got_usr_bin): Define. + (mount_info::got_usr_lib): Ditto. + (mount_info::root_idx): Ditto. + (mount_info::create_root_entry): Create root entry as immutable and + flag as automatic. + (mount_info::init): Remove "Huh? No /etc/fstab..." warning. + Unconditionally call from_fstab for user and system tables. Fill in + /usr/bin and /usr/lib if they have not been specified in /etc/fstab. + (oopts): Alphabetize. Add "override" option to allow overriding + immutable mount points. + (mount_info::add_item): Accommodate new MOUNT_IMMUTABLE flag intended + for root mount. + (mount_info::add_item): Detect "/usr/bin", "/usr/lib", and "/" and set + appropriate global state. + (fillout_mntent): Add ,auto to mount points added by Cygwin DLL. + (mount): Remove masking of MOUNT_SYSTEM. Allow user to shoot + themselves. Add comment. + * mount.h (mount_info::got_usr_bin): Declare. + (mount_info::got_usr_lib): Ditto. + (mount_info::root_idx): Ditto. + * include/sys/mount.h: Reformat enum. + Add MOUNT_{OVERRIDE,IMMUTABLE,AUTOMATIC}. + +2009-05-13 Corinna Vinschen <corinna@vinschen.de> * cygheap.h (cwdstuff): Convert to class. Make posix and dir private. (cwdstuff::get_posix): New method. |