Update comments re netkit-tiny...
[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  -Erik
14
15 -----------
16
17 Possible apps to include some time:
18
19 * hwclock
20 * stty
21 * group/commonize strings, remove dups (for i18n, l10n)
22
23 -----------------------
24
25 The Busybox lash shell needs to be taught Bourne shell grammer.  This
26 is planned for the next release of Busybox.  Look out ash, we are coming
27 for you...
28
29 -----------------------
30
31 Running the following:
32
33     rm -f busybox && make LDFLAGS+=-nostdlib 2>&1 | \
34         sed -ne 's/.*undefined reference to `\(.*\)..*/\1/gp' | sort | uniq
35
36 reveals the list of all external (i.e. libc) things that BusyBox depends on.
37 It would be a very nice thing to reduce this list to an absolute minimum, to
38 reduce the footprint of busybox, especially when staticly linking with
39 libraries such as uClibc.
40
41 -----------------------
42
43 Currently, busybox bypasses libc NSS.  Some folks might want that,
44 so perhaps adding in the option to choose whether to go to libc for
45 things like getpwnam() or whether to use the busybox version might 
46 be nice.
47
48 -----------------------
49
50 Most wanted list:
51
52     [andersen@slag busybox]$ grep -l getgroups *.[ch]
53     test.c
54
55 Policy violation.  getgroups uses libc nss, which is unlikely
56 to be present in an embedded system.
57
58 -----------------------
59
60 Compile with debugging on, run 'nm --size-sort ./busybox'
61 and then start with the biggest things and make them smaller...
62
63 -----------------------
64
65  du.c probably ought to have an -x switch like GNU du does...
66
67 ------------------------------------------------------------------