aboutsummaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
Diffstat (limited to 'TODO')
-rw-r--r--TODO38
1 files changed, 38 insertions, 0 deletions
diff --git a/TODO b/TODO
index b6f565f09..bcba2948c 100644
--- a/TODO
+++ b/TODO
@@ -24,10 +24,29 @@ around to it some time. If you have any good ideas, please let me know.
24* killall 24* killall
25* stty 25* stty
26* tr 26* tr
27* cut
27* expr (maybe?) (ash builtin?) 28* expr (maybe?) (ash builtin?)
28 29
29 30
30 31
32-----------------------
33
34
35busybox.defs.h is too big and hard to follow.
36
37I either need to add a better build system (like the Linux kernel?)
38or I need to split up busybox.defs.h into coherent chunks (i.e.
39busybox.defs.h just has a bunch of:
40
41#include "fileutils.h"
42#include "shellutils.h"
43
44which would then have smaller sets of #defines...
45Hmm. Needs to be carefully thought out.
46
47-----------------------
48
49
31 50
32Some known bugs, todo items, etc... 51Some known bugs, todo items, etc...
33 52
@@ -67,3 +86,22 @@ think???)
67There is no exclude file(s) option to tar. LRP's packaging system can not 86There is no exclude file(s) option to tar. LRP's packaging system can not
68function without this. Will you have the time to add this soon? 87function without this. Will you have the time to add this soon?
69 88
89
90-----------------------
91
92
93/bin/busybox --install -s which makes all links to commands that it
94 can support (an optionnal -s should be used for symbolic links instead
95 of hard links).
96
97-----------------------
98
99cd /mnt
100mkdir BACKUP
101mv * BACKUP
102
103Today, "mv" behaved as a cp -a and my disk becomed full. It does not
104work properly either when renaming a directory into something else
105(it produces a lot of disk activity when doing this).
106
107