aboutsummaryrefslogtreecommitdiff
path: root/Changelog
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-12-09 06:11:36 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-12-09 06:11:36 +0000
commit4793354dad40a6f738abc69b66980d0437585fe0 (patch)
tree14d0304ebb774077e696a9c86117bf43d935d8bb /Changelog
parent35d38f00a4e81cd26632a4cf2d081d221138954f (diff)
downloadbusybox-w32-4793354dad40a6f738abc69b66980d0437585fe0.tar.gz
busybox-w32-4793354dad40a6f738abc69b66980d0437585fe0.tar.bz2
busybox-w32-4793354dad40a6f738abc69b66980d0437585fe0.zip
Tail now works (costs 6k). Several other updates.
-Erik git-svn-id: svn://busybox.net/trunk/busybox@179 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'Changelog')
-rw-r--r--Changelog8
1 files changed, 4 insertions, 4 deletions
diff --git a/Changelog b/Changelog
index 62a317123..99963cef9 100644
--- a/Changelog
+++ b/Changelog
@@ -2,19 +2,19 @@
2 * New Apps: ping and hostname contributed by Randolph Chung 2 * New Apps: ping and hostname contributed by Randolph Chung
3 <tausq@debian.org>. 2 items off the TODO list! 3 <tausq@debian.org>. 2 items off the TODO list!
4 * I wrote free (just calls "cat /proc/meminfo"). 4 * I wrote free (just calls "cat /proc/meminfo").
5 * Added tail, based on tail from GNU textutils-1.19, but adjusted
6 to suit my evil purposes. Costs 6k.
5 * on reboot, init called 'umount -a -n', which caused errors 7 * on reboot, init called 'umount -a -n', which caused errors
6 when BB_MTAB was not enabled. Changed to 'umount -a', 8 when BB_MTAB was not enabled. Changed to 'umount -a',
7 which does the right thing. 9 which does the right thing.
8 * init will now try to run /sbin/getty if it is present (for easy 10 * init will now try to run /sbin/getty if it is present (for easy
9 integration with the about-to-be-released tinylogin.) 11 integration with the about-to-be-released tinylogin.)
10 * kill now behaves itself properly, added 'kill -l' to list signals 12 * kill now behaves itself properly, added 'kill -l' to list signals
11 * Began to add tail, but it doesn't work yet. 13 * 'ls -l' was failing on long directories, since my_getid was leaking
12 * my_getid was leaking file descriptors, causing 'ls -l' on long 14 one file descriptor per file. Oops.
13 directories to fail
14 15
15 -Erik Andrsen 16 -Erik Andrsen
16 17
17
180.38 180.38
19 * Fixed a segfault in 'umount -a' when a badly formed /etc/fstab 19 * Fixed a segfault in 'umount -a' when a badly formed /etc/fstab
20 file existed. 20 file existed.