Eric Andersen | b186d98 | 1999-12-03 09:19:54 +0000 | [diff] [blame] | 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, |
Eric Andersen | d14d2a1 | 2003-07-22 08:55:12 +0000 | [diff] [blame] | 3 | or that doing so is even a good idea. It just means that we _might_ get |
| 4 | around to it some time. If you have any good ideas, please send them |
| 5 | on in... |
Eric Andersen | 8ec10a9 | 2001-01-27 09:33:39 +0000 | [diff] [blame] | 6 | |
Eric Andersen | b186d98 | 1999-12-03 09:19:54 +0000 | [diff] [blame] | 7 | -Erik |
| 8 | |
| 9 | ----------- |
Eric Andersen | befda6e | 1999-11-25 08:06:22 +0000 | [diff] [blame] | 10 | |
Eric Andersen | 235f66d | 2000-12-13 18:07:38 +0000 | [diff] [blame] | 11 | Possible apps to include some time: |
| 12 | |
Mark Whitley | 0a027e6 | 2000-05-08 23:25:59 +0000 | [diff] [blame] | 13 | * group/commonize strings, remove dups (for i18n, l10n) |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 14 | |
Eric Andersen | 98e599c | 2001-02-14 18:47:33 +0000 | [diff] [blame] | 15 | ----------- |
| 16 | |
Eric Andersen | b0aca92 | 2001-05-03 17:35:48 +0000 | [diff] [blame] | 17 | With sysvinit, reboot, poweroff and halt all used a named pipe, |
| 18 | /dev/initctl, to communicate with the init process. Busybox |
| 19 | currently uses signals to communicate with init. This makes |
| 20 | busybox incompatible with sysvinit. We should probably use |
| 21 | a named pipe as well so we can be compatible. |
Eric Andersen | 98e599c | 2001-02-14 18:47:33 +0000 | [diff] [blame] | 22 | |
Erik Andersen | e272915 | 2000-02-18 21:34:17 +0000 | [diff] [blame] | 23 | ----------------------- |
| 24 | |
Eric Andersen | 98e599c | 2001-02-14 18:47:33 +0000 | [diff] [blame] | 25 | Run the following: |
Erik Andersen | f378fce | 2000-05-01 19:27:17 +0000 | [diff] [blame] | 26 | |
Erik Andersen | 12d1b37 | 2000-05-01 19:50:37 +0000 | [diff] [blame] | 27 | rm -f busybox && make LDFLAGS+=-nostdlib 2>&1 | \ |
| 28 | sed -ne 's/.*undefined reference to `\(.*\)..*/\1/gp' | sort | uniq |
Erik Andersen | f378fce | 2000-05-01 19:27:17 +0000 | [diff] [blame] | 29 | |
Eric Andersen | 77d9268 | 2001-05-23 20:32:09 +0000 | [diff] [blame] | 30 | reveals the list of all external (i.e., libc) things that BusyBox depends on. |
Eric Andersen | 235f66d | 2000-12-13 18:07:38 +0000 | [diff] [blame] | 31 | It would be a very nice thing to reduce this list to an absolute minimum, to |
Eric Andersen | c5cd470 | 2001-01-24 18:47:30 +0000 | [diff] [blame] | 32 | reduce the footprint of busybox, especially when staticly linking with |
| 33 | libraries such as uClibc. |
Erik Andersen | f378fce | 2000-05-01 19:27:17 +0000 | [diff] [blame] | 34 | |
Eric Andersen | 235f66d | 2000-12-13 18:07:38 +0000 | [diff] [blame] | 35 | ----------------------- |
| 36 | |
Erik Andersen | 7c4b2f3 | 2000-02-29 21:49:22 +0000 | [diff] [blame] | 37 | Compile with debugging on, run 'nm --size-sort ./busybox' |
| 38 | and then start with the biggest things and make them smaller... |
| 39 | |
Erik Andersen | 7c4b2f3 | 2000-02-29 21:49:22 +0000 | [diff] [blame] | 40 | ----------------------- |
| 41 | |
John Beppu | 5d81768 | 2001-04-17 17:09:34 +0000 | [diff] [blame] | 42 | xargs could use a -l option |
| 43 | |
Erik Andersen | 298854f | 2000-03-23 01:09:18 +0000 | [diff] [blame] | 44 | ------------------------------------------------------------------ |
Aaron Lehmann | ebd8065 | 2001-12-06 03:32:12 +0000 | [diff] [blame] | 45 | |
| 46 | libbb/unzip.c and archival/gzip.c have common constant static arrays and |
| 47 | code for initializing the CRC array. Both use CRC-32 and could use |
| 48 | common code for CRC calculation. Within archival/gzip.c, the CRC |
| 49 | array should be malloc-ed as it is in libbb/unzip.c . |