More stuff.
[oweals/busybox.git] / Changelog
1 0.32
2         * usage() now printf the BusyBox version.  This will help folks
3             realize that they are not in Kansas anymore.
4         * Fixed mkdir -m option so that it works.
5
6 0.31
7         * I added a changelog for version 0.30. 
8         * adjusted find internals to make it smaller, and removed 
9             some redundancy.
10         * Fixed a segfault in ps when /etc/passwd or /etc/group 
11             are absent.  Now will warn you and carry on.
12         * Added in optional _real_ regular expression support (to be
13             the basis for a future sed utility).  When compiled in
14             it adds 3.9k, but makes grep much more capable.
15         * Checked out using nftw(3) for recursive stuff, but unfortunatly
16             it wasn't supported before GNU libc 2.1, and some folks use
17             glibc 2.0.7 since it is much smaller than that latest and greatest.
18
19
20 0.30
21         Major changes -- lots of stuff rewritten. Many thanks to Lineo for
22         paying me to make these updates. If you have any problems with busybox, 
23         or notice any bugs -- please let me know so I can fix it.  These 
24         changes include:
25
26         Core Changes:
27             * busybox can now invoke apps in two ways: via symlinks to the
28                 busybox binary, and as 'busybox [function] [arguments]...'
29             * When invoked as busybox, the list of currently compiled in 
30                 functions is printed out (no this is not bloat -- the list
31                 has to be there anyway to map invocation name to function).
32             * busybox no longer parses command lines for apps or displays their
33                 usage info.  Each app gets to handle (or not handle) this for
34                 itself.
35             * Eliminated monadic, dyadic, descend, block_device, and 
36                 postprocess.  It was cumbersome to have so many programs
37                 cobbled together in this way.  Without them, the app is much
38                 more granular.
39             * All shared code now lives in utility.c, and is properly
40                 ifdef'ed to be only included for those apps requiring it.
41             * Eliminated struct FileInfo (the basis of monadic, dyadic, etc)
42                 so now each app has the function prototype of (da-dum):
43                     extern int foo_main(int argc, char** argv);
44                 which speeds integration of new apps.
45             * Adjusted the Makefile to make it easier to 
46                 {en|dis}able debugging.
47             * Changed default compiler optimization to -Os 
48                 (optimize for smaller binaries).
49
50         App Changes:
51             * To cope with the new app function prototype and the removal of
52                 monadic, dyadic, etc, the following apps were re-written:
53                     * cat - Works same as always.
54                     * chgrp, chmod, chown - rewrite.  Combined into a single 
55                         source file.  Absorbed patches from Enrique Zanardi <ezanard@debian.org>
56                         that removes the dependency on libc6 libnss* libraries.
57                     * cp - Can now do 'cp -a' can can copy devices,
58                         pipes, symlinks, as well as recursive or non-recursive dir copies.
59                     * fdflush - adjusted to remove dependancy on struct FileInfo.
60                     * find - Now includes some basic regexp matching 
61                         which will be the basic of a future mini-sed.
62                     * ln - Same functionality.
63                     * mkdir - Added -p flag to feature set.
64                     * mv - rewrite.
65                     * rm - Added -f flag to feature set.
66                     * rmdir - Same functionality.
67                     * swapon, swapoff - Combined into a single binary. No longer
68                         uses /etc/swaps.  swap{on|off} -a uses /etc/fstab instead.
69                     * touch - Same functionality.
70             * date - adjusted with a patch from Matthew Grant <grantma@anathoth.gen.nz>
71                 to accomodate glibc timezone support.  I then ripped out GNU getopt.
72             * mkswap -- new version merged from util-linux.  Can now make >128Meg swaps.
73             * Replaced the old and star, unstar, and tarcat with the tar 
74                 implementation from sash.   Now tar behaves as god intended
75                 it to (i.e. tar -xvf <file> and tar -cf <file> <dir> work).
76             * dd -- rewritten.  Can with with files, stdin, stdout.
77             * Added the following new apps:
78                     * loadfont -- added from debian boot floppies 
79                     * chroot -- added based on a patch from Paolo Molaro <lupus@lettere.unipd.it> 
80                     * grep -- I just wrote it.  Only matches simple strings
81                     * ps -- I just wrote it.  Has _no_ options at all, but works.
82                     * fsck_minix, mkfs_minix -- added from util-linux, but I ripped out
83                         internationalization and such to make them smaller.
84                     * sfdisk -- Added from util-linux (minus internationalization and such).
85             * Probably some other changes that I forgot to document...
86
87          -Erik Andersen
88         
89 0.28    
90         mini-netcat (mnc) rewritten.
91         
92 0.27
93         Mount now supports -a, and -t auto.
94         Mount now updates mtab correctly for 'ro'.
95         More checks screen rows size, outputs bytes percentage.
96         Printf added as module.
97 0.26
98         Touch now creates files. -c option for no create.
99