aboutsummaryrefslogtreecommitdiff
path: root/Changelog
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-11-05 00:31:46 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-11-05 00:31:46 +0000
commitbe51d463ecbb35a5711087c56b9257029c8fc152 (patch)
tree980d8b0e71170aeb61c1e7ea871c7233ca31cbb6 /Changelog
parent6f170b087c83ea252fc3aff6f5ecafe0ec721fba (diff)
downloadbusybox-w32-be51d463ecbb35a5711087c56b9257029c8fc152.tar.gz
busybox-w32-be51d463ecbb35a5711087c56b9257029c8fc152.tar.bz2
busybox-w32-be51d463ecbb35a5711087c56b9257029c8fc152.zip
More stuff -- ready for release.
-Erik git-svn-id: svn://busybox.net/trunk/busybox@75 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'Changelog')
-rw-r--r--Changelog8
1 files changed, 8 insertions, 0 deletions
diff --git a/Changelog b/Changelog
index cd0ca0a35..1161f8bb3 100644
--- a/Changelog
+++ b/Changelog
@@ -9,10 +9,18 @@
9 * Wrote sed -- weighs only 1.8k (5.8k with full regular expressions!). 9 * Wrote sed -- weighs only 1.8k (5.8k with full regular expressions!).
10 * Fixed a stupid seg-fault in sync 10 * Fixed a stupid seg-fault in sync
11 * Fixed mount -- mount -a failed to parse and apply mount options 11 * Fixed mount -- mount -a failed to parse and apply mount options
12 * Fixed umount -n (patch thanks to Matthew Grant <grantma@anathoth.gen.nz>)
13 * umount -a no longer umounts /proc
12 * Added BB_MTAB, allowing (at the cost of ~1.5k and the need for a rw /etc) 14 * Added BB_MTAB, allowing (at the cost of ~1.5k and the need for a rw /etc)
13 folks to use a real /etc/mtab file instead of a symlink to /proc/mounts. 15 folks to use a real /etc/mtab file instead of a symlink to /proc/mounts.
14 mount, and umount will add/remove entries and df will now use /etc/mtab 16 mount, and umount will add/remove entries and df will now use /etc/mtab
15 if BB_MTAB is defined. 17 if BB_MTAB is defined.
18 * Fixed a nice bug in recursiveAction() which caused it to infinitely
19 hunt through /proc/../fd/* creating new file descriptors if it
20 followed the /dev/fd link over to /proc. recursiveAction() now
21 lstat's the file when followLinks==FALSE so it won't follow links
22 as the name suggests. Fix thanks to Matt Porter <porter@debian.org>.
23
16 24
17 -Erik Andersen 25 -Erik Andersen
18 26