blob: 55b32df96811149919840ef8841f54d8ddb7275a [file] [log] [blame]
Eric Andersenb186d981999-12-03 09:19:54 +00001TODO list for busybox in no particular order. Just because something
2is listed here doesn't mean that it is going to be added to busybox,
3or that doing so is even a good idea. It just means that I _might_ get
4around to it some time. If you have any good ideas, please let me know.
Eric Andersen394f7641999-11-23 21:38:12 +00005
Erik Andersen1c5b2581999-12-16 20:59:36 +00006* login/sulogin/passwd/getty/etc are part of tinylogin, and so are not
Erik Andersen94f5e0b2000-05-01 19:10:52 +00007 needed or wanted in busybox (or else I'd have to link to libcrypt).
Erik Andersen1c5b2581999-12-16 20:59:36 +00008
Eric Andersen235f66d2000-12-13 18:07:38 +00009* Networking apps are going to be split out to a new package called netkit-tiny
10 before the next release of Busybox. This will remove the following items
11 from BusyBox: hostid, hostname, nc, nslookup, telnet, and ping. nfs
12 mounting and syslogd (network logging) will remain in BusyBox.
Erik Andersen31638212000-01-15 22:28:50 +000013
Eric Andersenb186d981999-12-03 09:19:54 +000014 -Erik
15
16-----------
Eric Andersenbefda6e1999-11-25 08:06:22 +000017
Eric Andersen235f66d2000-12-13 18:07:38 +000018Possible apps to include some time:
19
Eric Andersenb186d981999-12-03 09:19:54 +000020* hwclock
Eric Andersenb186d981999-12-03 09:19:54 +000021* stty
Mark Whitley0a027e62000-05-08 23:25:59 +000022* group/commonize strings, remove dups (for i18n, l10n)
Erik Andersenfac10d72000-02-07 05:29:42 +000023
Erik Andersene2729152000-02-18 21:34:17 +000024-----------------------
25
Eric Andersen235f66d2000-12-13 18:07:38 +000026The Busybox lash shell needs to be taught Bourne shell grammer. This
27is planned for the next release of Busybox. Look out ash, we are coming
28for you...
29
30-----------------------
31
Erik Andersenf378fce2000-05-01 19:27:17 +000032Running the following:
33
Erik Andersen12d1b372000-05-01 19:50:37 +000034 rm -f busybox && make LDFLAGS+=-nostdlib 2>&1 | \
35 sed -ne 's/.*undefined reference to `\(.*\)..*/\1/gp' | sort | uniq
Erik Andersenf378fce2000-05-01 19:27:17 +000036
37reveals the list of all external (i.e. libc) things that BusyBox depends on.
Eric Andersen235f66d2000-12-13 18:07:38 +000038It would be a very nice thing to reduce this list to an absolute minimum, to
39reduce the footprint of busybox when staticly linking with libraries such as
40uClibc.
Erik Andersenf378fce2000-05-01 19:27:17 +000041
Eric Andersen235f66d2000-12-13 18:07:38 +000042-----------------------
43
44Currently, busybox bypasses libc NSS. Some folks might want that,
45so perhaps adding in the option to choose whether to go to libc for
46things like getpwnam() or whether to use the busybox version might
47be nice.
48
49-----------------------
Erik Andersen9b7d9642000-05-01 19:49:20 +000050
Erik Andersen5afc8642000-05-02 00:07:56 +000051Most wanted list:
52
53 [andersen@slag busybox]$ grep -l getgroups *.[ch]
54 test.c
55
56Policy violation. getgroups uses libc nss, which is unlikely
57to be present in an embedded system.
58
Erik Andersenf378fce2000-05-01 19:27:17 +000059-----------------------
60
Erik Andersen7c4b2f32000-02-29 21:49:22 +000061Compile with debugging on, run 'nm --size-sort ./busybox'
62and then start with the biggest things and make them smaller...
63
Erik Andersen7c4b2f32000-02-29 21:49:22 +000064-----------------------
65
Eric Andersencaffb6e2000-09-25 21:28:07 +000066 du.c probably ought to have an -x switch like GNU du does...
Erik Andersen029011b2000-03-04 21:19:32 +000067
Erik Andersen298854f2000-03-23 01:09:18 +000068------------------------------------------------------------------