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