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