diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-11-05 00:31:46 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-11-05 00:31:46 +0000 |
commit | cf8c9cf7b9792e9cef3d790c46763712c390c7ed (patch) | |
tree | 980d8b0e71170aeb61c1e7ea871c7233ca31cbb6 /Changelog | |
parent | d0246fb72b40320a74376af1bb944fef2c9b734f (diff) | |
download | busybox-cf8c9cf7b9792e9cef3d790c46763712c390c7ed.tar.gz |
More stuff -- ready for release.
-Erik
Diffstat (limited to 'Changelog')
-rw-r--r-- | Changelog | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -9,10 +9,18 @@ * Wrote sed -- weighs only 1.8k (5.8k with full regular expressions!). * Fixed a stupid seg-fault in sync * Fixed mount -- mount -a failed to parse and apply mount options + * Fixed umount -n (patch thanks to Matthew Grant <grantma@anathoth.gen.nz>) + * umount -a no longer umounts /proc * Added BB_MTAB, allowing (at the cost of ~1.5k and the need for a rw /etc) folks to use a real /etc/mtab file instead of a symlink to /proc/mounts. mount, and umount will add/remove entries and df will now use /etc/mtab if BB_MTAB is defined. + * Fixed a nice bug in recursiveAction() which caused it to infinitely + hunt through /proc/../fd/* creating new file descriptors if it + followed the /dev/fd link over to /proc. recursiveAction() now + lstat's the file when followLinks==FALSE so it won't follow links + as the name suggests. Fix thanks to Matt Porter <porter@debian.org>. + -Erik Andersen |