diff options
| author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-03-15 17:56:44 +0000 |
|---|---|---|
| committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-03-15 17:56:44 +0000 |
| commit | 260fc2c4f0d502b375dd1b182f27daeb253ee367 (patch) | |
| tree | 7a65dfe2d19ec71deb411a0bd46697f248341198 | |
| parent | 3de7d20ae04048a44df00cbb4c656e8bcf273626 (diff) | |
| download | busybox-w32-260fc2c4f0d502b375dd1b182f27daeb253ee367.tar.gz busybox-w32-260fc2c4f0d502b375dd1b182f27daeb253ee367.tar.bz2 busybox-w32-260fc2c4f0d502b375dd1b182f27daeb253ee367.zip | |
Update the changelog, in preparation for making the 0.50 release
git-svn-id: svn://busybox.net/trunk/busybox@2087 69ca8d6d-28ef-0310-b511-8ec308f3f277
| -rw-r--r-- | Changelog | 32 |
1 files changed, 25 insertions, 7 deletions
| @@ -1,14 +1,18 @@ | |||
| 1 | 0.50 | 1 | 0.50 |
| 2 | * Erik Andersen -- added ifconfig interface status reporting | 2 | * Erik Andersen -- added ifconfig interface status reporting |
| 3 | * Erik Andersen -- Debian packaging updates | 3 | * Erik Andersen -- Debian packaging updates |
| 4 | * Erik Andersen -- lash environment variable expansion updated | 4 | * Erik Andersen -- lash environment variable expansion rewritten, |
| 5 | with lots of help/fixes/testing from Larry Doolittle. | ||
| 5 | * Erik Andersen -- Fix use of busybox with dmalloc debugging lib | 6 | * Erik Andersen -- Fix use of busybox with dmalloc debugging lib |
| 6 | * Erik Andersen -- fixed ls behavior for broken or very narrow terminals. | 7 | * Erik Andersen -- fixed ls behavior for broken or very narrow terminals. |
| 7 | * Erik Andersen -- if umount2 or pivot_root are not available, | 8 | * Erik Andersen -- stub umount2 and pivot_root if they are not available. |
| 8 | stub them out. | 9 | * Erik Andersen -- libc5 fixes |
| 10 | * Erik Andersen -- make init work with devfsd | ||
| 11 | * Erik Andersen -- fixed df for nfs and dos where blksize = 512 | ||
| 9 | * Erik Andersen -- Make sure libpwd.a is linked _last_ so it | 12 | * Erik Andersen -- Make sure libpwd.a is linked _last_ so it |
| 10 | overrides the system pwd/grp | 13 | overrides the system pwd/grp |
| 11 | * Vladimir N. Oleynik -- new stty applet | 14 | * Christophe Boyanique -- added an optional egrep alias for grep. |
| 15 | * Christophe Boyanique -- added optional 'rm -i' support. | ||
| 12 | * Kenneth Chalmers and Erik Andersen -- fixed ln so it | 16 | * Kenneth Chalmers and Erik Andersen -- fixed ln so it |
| 13 | behaves when given no arguments (prints usage) and when | 17 | behaves when given no arguments (prints usage) and when |
| 14 | given just one arg (tries to make a link in the cwd). | 18 | given just one arg (tries to make a link in the cwd). |
| @@ -16,8 +20,6 @@ | |||
| 16 | * Magnus Damm -- powerpc support for busybox insmod. | 20 | * Magnus Damm -- powerpc support for busybox insmod. |
| 17 | * David Douthitt -- fixed a build error in df.c when | 21 | * David Douthitt -- fixed a build error in df.c when |
| 18 | BB_FEATURE_HUMAN_READABLE was disabled | 22 | BB_FEATURE_HUMAN_READABLE was disabled |
| 19 | * Vladimir Oleynik -- saved 128 bytes by moving error checking | ||
| 20 | for several my_* functions into utility.c | ||
| 21 | * John Beppu -- wrote autodocifier.pl, which will be used to auto- | 23 | * John Beppu -- wrote autodocifier.pl, which will be used to auto- |
| 22 | generate the documentation from the source code, making life | 24 | generate the documentation from the source code, making life |
| 23 | much simpler for all. | 25 | much simpler for all. |
| @@ -27,8 +29,14 @@ | |||
| 27 | * Larry Doolittle -- rewrote ifconfig to make it smaller | 29 | * Larry Doolittle -- rewrote ifconfig to make it smaller |
| 28 | * Larry Doolittle and Erik Andersen -- cleanups to pristine source | 30 | * Larry Doolittle and Erik Andersen -- cleanups to pristine source |
| 29 | * Larry Doolittle -- many bugfixes resulting from regression testing | 31 | * Larry Doolittle -- many bugfixes resulting from regression testing |
| 32 | * Gennady Feldman -- split syslogd.c into syslogd and klogd | ||
| 33 | * Gennady Feldman -- make syslogd single threaded -- no more forking | ||
| 34 | * Jeff Garzik -- getopt-ified rmmod. | ||
| 35 | * Jeff Garzik -- glibc 2.2 warning cleanups | ||
| 36 | * Jeff Garzik -- namespace pollution cleanup (staticified variables). | ||
| 30 | * Erik Gustavsson <cyrano@algonet.se> -- allow env variables set on the | 37 | * Erik Gustavsson <cyrano@algonet.se> -- allow env variables set on the |
| 31 | kernel command line to be inherited into init and its children. | 38 | kernel command line to be inherited into init and its children. |
| 39 | * Erik Habbinga -- fixed an uninitialized substitution delimiter in sed. | ||
| 32 | * Chris Jaeger -- Makefile cleanup to make option setting less error-prone | 40 | * Chris Jaeger -- Makefile cleanup to make option setting less error-prone |
| 33 | * Chris Jaeger <cjaeger@ensim.com> -- Carefully check NFS_MOUNT_VERSION | 41 | * Chris Jaeger <cjaeger@ensim.com> -- Carefully check NFS_MOUNT_VERSION |
| 34 | depending on what kernel is being used. | 42 | depending on what kernel is being used. |
| @@ -46,22 +54,32 @@ | |||
| 46 | * Matt Kraai -- added find_applet_by_name and saved some memory thereby | 54 | * Matt Kraai -- added find_applet_by_name and saved some memory thereby |
| 47 | * Matt Kraai -- added chomp to reduce redundant code elsewhere | 55 | * Matt Kraai -- added chomp to reduce redundant code elsewhere |
| 48 | * Matt Kraai -- Removed trailing \n chars from error_msg{,_and_die} messages. | 56 | * Matt Kraai -- Removed trailing \n chars from error_msg{,_and_die} messages. |
| 57 | * John Lombardo -- fixed OOM in insmod. | ||
| 49 | * Glenn McGrath -- bypass /proc in mount, now uses sysfs. | 58 | * Glenn McGrath -- bypass /proc in mount, now uses sysfs. |
| 50 | * Glenn McGrath -- several updates to dpkg and dpkg-deb. | 59 | * Glenn McGrath -- several updates to dpkg and dpkg-deb. |
| 51 | * Manuel Novoa III -- several size optimizations: parse_mode, | 60 | * Manuel Novoa III -- several size optimizations: parse_mode, |
| 52 | process_escape_sequence, format, and get_kernel_revision. | 61 | process_escape_sequence, format, and get_kernel_revision. |
| 62 | * Manuel Novoa III -- rewrote ifconfig again to make it smaller still | ||
| 63 | * Manuel Novoa III -- added ifconfig -a, updated interface reporting | ||
| 53 | * Vladimir N. Oleynik -- Fixed a bug where init set PATH incorrectly | 64 | * Vladimir N. Oleynik -- Fixed a bug where init set PATH incorrectly |
| 54 | * Vladimir N. Oleynik -- cleanups to route, cmdedit, mkdir, | 65 | * Vladimir N. Oleynik -- cleanups to route, cmdedit, mkdir, |
| 55 | mkfs_minix, mkswap, chmod_chown_chgrp and utility.c | 66 | mkfs_minix, mkswap, chmod_chown_chgrp and utility.c |
| 56 | * Vladimir N. Oleynik -- many fixes to cmdedit. so tab completion | 67 | * Vladimir N. Oleynik -- many fixes to cmdedit. so tab completion |
| 57 | is now working and general editing is much improved. | 68 | is now working and general editing is much improved, and to |
| 69 | improve complex prompt handling. | ||
| 58 | * Vladimir N. Oleynik -- added route status reporting. | 70 | * Vladimir N. Oleynik -- added route status reporting. |
| 59 | * Vladimir N. Oleynik -- fixed wget to use xfopen | 71 | * Vladimir N. Oleynik -- fixed wget to use xfopen |
| 72 | * Vladimir N. Oleynik -- new stty applet | ||
| 73 | * Vladimir N. Oleynik -- fixed find, it used to stop on perm errors. | ||
| 74 | * Vladimir N. Oleynik -- locale forced to posix for scripts | ||
| 75 | * Vladimir N. Oleynik -- saved 128 bytes by moving error checking | ||
| 76 | for several my_* functions into utility.c | ||
| 60 | * Bjorn Wesen -- new ifconfig and route applet (taken from | 77 | * Bjorn Wesen -- new ifconfig and route applet (taken from |
| 61 | work done by Axis Communications). | 78 | work done by Axis Communications). |
| 62 | * Mark Whitley -- Added a 'How to contribute to Busybox' doc | 79 | * Mark Whitley -- Added a 'How to contribute to Busybox' doc |
| 63 | and updated the style guide. | 80 | and updated the style guide. |
| 64 | * Mark Whitley -- implemented grep -A, -B, and -C | 81 | * Mark Whitley -- implemented grep -A, -B, and -C |
| 82 | * Mark Whitley -- overhauled the test suite. | ||
| 65 | 83 | ||
| 66 | 84 | ||
| 67 | -Erik Andersen, not yet released | 85 | -Erik Andersen, not yet released |
