diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-07-31 16:11:41 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-07-31 16:11:41 +0000 |
commit | 57c82fe7c4feede01b3b2370c0278444a91be788 (patch) | |
tree | 6e19cfc72bc7996e1607d9b4cf88d63e478c3992 /Changelog | |
parent | 51038a3f42018f40f3b256a4887db2e1a3a053f7 (diff) | |
download | busybox-w32-57c82fe7c4feede01b3b2370c0278444a91be788.tar.gz busybox-w32-57c82fe7c4feede01b3b2370c0278444a91be788.tar.bz2 busybox-w32-57c82fe7c4feede01b3b2370c0278444a91be788.zip |
I think this should be the final changelog update...
-Erik
Diffstat (limited to 'Changelog')
-rw-r--r-- | Changelog | 75 |
1 files changed, 51 insertions, 24 deletions
@@ -1,42 +1,69 @@ | |||
1 | 0.53pre | 1 | 0.53 |
2 | 2 | ||
3 | Critical Bugfixes: | 3 | Critical Bugfixes: |
4 | * Matt Kraai -- Fixed wget output file opening (wget failed in 0.52). | 4 | * Matt Kraai |
5 | * Matt Kraai -- Fixed a memory leak in syslogd (found by Adam Slattery). | 5 | -- Fixed wget output file opening (wget failed in 0.52). |
6 | -- Fixed a memory leak in syslogd (found by Adam Slattery). | ||
7 | * Vladimir Oleynik, Matt Kraai, Erik Andersen | ||
8 | -- several nasty bugs in ash and msh. msh could not assign | ||
9 | any variables and had debug code still enabled. ash | ||
10 | had several compile errors (depending on selected options) | ||
11 | and variable assignment problems as well. | ||
6 | 12 | ||
7 | New Applets: | 13 | New Applets: |
8 | * Vladimir Oleynik -- traceroute | ||
9 | * David McCullough <davidm@lineo.com> -- modprobe | 14 | * David McCullough <davidm@lineo.com> -- modprobe |
15 | * Vladimir Oleynik -- traceroute | ||
16 | |||
17 | New Scripts: | ||
18 | * David Schleef, Erik Andersen, Stuart Hughes -- depmod.pl | ||
19 | This is a replacement for the depmod program from the modutils | ||
20 | package, but is fully cross platform and is designed to run on | ||
21 | your host system (not on the target). | ||
10 | 22 | ||
11 | Other Changes: | 23 | Other Changes: |
12 | * Vladimir Oleynik | 24 | * Erik Andersen |
13 | -- Fixed tr to support 'tr a-z A-Z' syntax, | 25 | -- various little things |
14 | -- Many ash corrections, optimizations, and cleanups. | 26 | -- fixed busybox.spec so it should now work on redhat systems |
15 | -- optimizations for traceroute and md5sum | 27 | -- fixed dos2unix and unix2dos so they should work once again |
16 | -- cmdedit updates and API change | 28 | -- Adjustments to make busybox more uClinux friendly. Busybox |
17 | -- Namespace cleanup (i.e. adding 'static' private function calls) | 29 | should now work on uClinux systems without needing and source |
18 | -- added "stopped jobs" warning to ash on exit | 30 | code changes (applets that won't work on uClinux systems are |
19 | * Glenn McGrath | 31 | now automagicaly disabled). |
20 | -- dpkg rewrite. Should now be compatable with the real dpkg, | 32 | * Jim Gleason <jimg@lineo.com> |
21 | but needs more testing. | 33 | -- Fixed for sed, where it failed to preserve whether or not the |
22 | -- Updates to archiving tools (gunzip/gzip/cpio/ar/etc) | 34 | line was previously altered when running a subst command. |
23 | -- Rewrote uuencode, will allow base64 encoding to be used by wget | ||
24 | * Erik Andersen -- fixed busybox.spec so it should now work on | ||
25 | properly on redhat systems | ||
26 | * Matt Kraai | 35 | * Matt Kraai |
27 | -- Made tar read 20 512byte blocks at a time (like GNU tar) | 36 | -- Made tar read 20 512byte blocks at a time (like GNU tar) |
28 | -- Allow msh.c assignments with the export and readonly commands. | 37 | -- Allow msh.c assignments with the export and readonly commands. |
29 | -- Added BB_FEATURE_DEVFS to enable devfs device names. | 38 | -- Added BB_FEATURE_DEVFS to enable devfs device names. |
30 | -- Fixed ping compile problem, size reduction | 39 | -- Fixed ping compile problem, size reduction |
31 | * Aaron Lehmann -- slimmed down md5sum | 40 | -- Better devfs support |
32 | * David McCullough and Erik Andersen -- make busybox more uClinux | 41 | -- Don't save/restore vi readonly flag if vi is compiled read-only. |
33 | friendly. Busybox _should_ now work on uClinux systems without | 42 | -- Reworked rdate option handling (is now smaller). |
34 | needing and source code changes (applets that won't work on | 43 | * Aaron Lehmann |
35 | uClinux systems are now automagicaly disabled). | 44 | -- slimmed down md5sum |
45 | -- contributed a nice new (hand written, not lex/yacc) Posix math | ||
46 | support for ash, which is once again a full posix shell. | ||
36 | * Felix von Leitner <leitner@convergence.de> -- patches to make busybox | 47 | * Felix von Leitner <leitner@convergence.de> -- patches to make busybox |
37 | work with dietlibc. | 48 | work with dietlibc. |
49 | * David McCullough | ||
50 | -- Adjustments to make busybox more uClinux friendly | ||
51 | * Glenn McGrath | ||
52 | -- Fixed gzip so when a filename is '-' it will use stdin/stdout | ||
53 | -- dpkg rewrite. Should now be compatable with the real dpkg, | ||
54 | but needs more testing. | ||
55 | -- Updates to archiving tools (gunzip/gzip/cpio/ar/etc) | ||
56 | -- Rewrote uuencode, will allow base64 encoding to be used by wget | ||
57 | * Vladimir Oleynik | ||
58 | -- Fixed tr to support 'tr a-z A-Z' syntax, | ||
59 | -- Many ash corrections, optimizations, and cleanups. | ||
60 | -- optimizations for traceroute, md5sum, chown, ping | ||
61 | -- cmdedit updates and API change | ||
62 | -- Namespace cleanup (i.e. adding 'static' private function calls) | ||
63 | -- added "stopped jobs" warning to ash on exit | ||
64 | |||
38 | 65 | ||
39 | -Not Yet Released | 66 | -Erik Andersen, 31 July 2001 |
40 | 67 | ||
41 | 68 | ||
42 | 69 | ||