blob: e05558b04d14fd2695e2747c374d89509f7d2dd1 [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
7 needed or wanted in busybox (or else I'd have to link in libcrypt).
8
Erik Andersen31638212000-01-15 22:28:50 +00009* Networking apps are probably going to be split out some time soon into a
10 separate package (named perhaps tiny-netkit?). This currently includes
11 hostid, hostname, mnc, and ping.
12
13
Eric Andersenb186d981999-12-03 09:19:54 +000014 -Erik
15
16-----------
Eric Andersenbefda6e1999-11-25 08:06:22 +000017
Eric Andersen394f7641999-11-23 21:38:12 +000018* Allow tar to create archives with sockets, devices, and other special files
Erik Andersen10c341a1999-12-17 18:52:06 +000019* Make insmod actually work
Eric Andersen485b9551999-12-07 23:14:59 +000020* dnsdomainname
Erik Andersen9ffdaa62000-02-11 21:55:04 +000021* traceroute/netstat
Eric Andersenb186d981999-12-03 09:19:54 +000022* rdate
23* hwclock
Eric Andersenb186d981999-12-03 09:19:54 +000024* killall
Eric Andersenb186d981999-12-03 09:19:54 +000025* stty
Eric Andersenb186d981999-12-03 09:19:54 +000026* tr
Erik Andersene2729152000-02-18 21:34:17 +000027* cut
Eric Andersen2cb55071999-12-10 08:25:07 +000028* expr (maybe?) (ash builtin?)
Eric Andersenb186d981999-12-03 09:19:54 +000029
Erik Andersenfac10d72000-02-07 05:29:42 +000030
31
Erik Andersene2729152000-02-18 21:34:17 +000032-----------------------
33
Erik Andersen7c4b2f32000-02-29 21:49:22 +000034Compile with debugging on, run 'nm --size-sort ./busybox'
35and then start with the biggest things and make them smaller...
36
37
38-----------------------
39
Erik Andersene2729152000-02-18 21:34:17 +000040
41busybox.defs.h is too big and hard to follow.
42
43I either need to add a better build system (like the Linux kernel?)
44or I need to split up busybox.defs.h into coherent chunks (i.e.
45busybox.defs.h just has a bunch of:
46
47#include "fileutils.h"
48#include "shellutils.h"
49
50which would then have smaller sets of #defines...
51Hmm. Needs to be carefully thought out.
52
53-----------------------
54
55
Erik Andersenfac10d72000-02-07 05:29:42 +000056
57Some known bugs, todo items, etc...
58
59-----------------------
60
61
Erik Andersenfac10d72000-02-07 05:29:42 +000062-rw-r--r-- 1000/1000 4398 2000-01-06 21:55 uniq.c
63-rw-r--r-- 1000/1000 1568 1999-10-20 18:08 update.c
64-rw-r----- 0/1000 1168 2000-01-29 21:03 update.o
65-rw-r--r-- 1000/1000 22820 2000-01-05 11:36 utility.c
66-rw-r----- 0/1000 7372 2000-01-29 21:03 utility.o
67tar: Skipping to next file header
68tar: Skipping to next file header
69tar: Archive - EOF not on block boundary
70tar: Error is not recoverable: exiting now
71
72
73#1 You are storing by id instead of name like normal tar. Did you realize this?
74(or am I missing some compile option? )ctar did not do this, and I don't think
75it's a good idea for LRP.
76
77#2
78ctar did not produce the EOF error like your tar does. I believe you need to
79pad the end of the archive with at least 2 tarsized (512byte) blocks. (I
80think???)
81
82#3
83There is no exclude file(s) option to tar. LRP's packaging system can not
84function without this. Will you have the time to add this soon?
85
Erik Andersene2729152000-02-18 21:34:17 +000086
87-----------------------
88
Erik Andersene2729152000-02-18 21:34:17 +000089cd /mnt
90mkdir BACKUP
91mv * BACKUP
92
93Today, "mv" behaved as a cp -a and my disk becomed full. It does not
94work properly either when renaming a directory into something else
95(it produces a lot of disk activity when doing this).
96
97
Erik Andersen27fdd082000-02-19 18:16:49 +000098-----------------------
99
100
101Feature request:
102
103/bin/busybox --install -s which makes all links to commands that it
104 can support (an optionnal -s should be used for symbolic links instead
105 of hard links).
106
Erik Andersen3b9522f2000-02-22 17:12:00 +0000107
108-----------------------
109
110
111> Have you ever thought of doig network logging in busybox syslogd ? It
112> would quite make sense on embedded systems... :)
113
114So far I had not considered it. Basically, you wish to have
115messages from the embedded box logged to a remote network
116syslog box, right? I can see that this would be useful.
117I'll add this to the TODO list,
118