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