Fix up copyright msgs. Bump version to 0.49 in preparation for
[platform/upstream/busybox.git] / TODO
1 TODO list for busybox in no particular order. Just because something
2 is listed here doesn't mean that it is going to be added to busybox,
3 or that doing so is even a good idea. It just means that I _might_ get
4 around to it some time. If you have any good ideas, please let me know.
5
6 * login/sulogin/passwd/getty/etc are part of tinylogin, and so are not
7     needed or wanted in busybox (or else I'd have to link to libcrypt).
8
9 * We _were_ going to split networking apps into a new package called 
10     netkit-tiny.  Per discussions on the mailing list, this isn't going
11     to happen.  False alarm.  Sorry about the confusion.  
12
13 * The busybox shell, lash, is really too weak for serious use, although it is
14     possible to run simple systems with it.  BusyBox 0.49 was supposed to have
15     a new shell, updated to understand full Bourne grammer.  Well, that simply
16     didn't happen in time for the release.  A rewrite is in progress that will
17     result in a new shell that understands the full Bourne grammar.  This new
18     shell is being championed by Larry Doolittle <ldoolitt@recycle.lbl.gov>, and
19     could use your help.  Please see the work in progress at
20         http://doolittle.faludi.com/~larry/parser.html
21
22  -Erik
23
24 -----------
25
26 Possible apps to include some time:
27
28 * hwclock
29 * stty
30 * group/commonize strings, remove dups (for i18n, l10n)
31
32 -----------------------
33
34 Running the following:
35
36     rm -f busybox && make LDFLAGS+=-nostdlib 2>&1 | \
37         sed -ne 's/.*undefined reference to `\(.*\)..*/\1/gp' | sort | uniq
38
39 reveals the list of all external (i.e. libc) things that BusyBox depends on.
40 It would be a very nice thing to reduce this list to an absolute minimum, to
41 reduce the footprint of busybox, especially when staticly linking with
42 libraries such as uClibc.
43
44 -----------------------
45
46 Compile with debugging on, run 'nm --size-sort ./busybox'
47 and then start with the biggest things and make them smaller...
48
49 -----------------------
50
51  du.c probably ought to have an -x switch like GNU du does...
52
53 ------------------------------------------------------------------