diff options
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 38 |
1 files changed, 38 insertions, 0 deletions
@@ -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 | |||
35 | busybox.defs.h is too big and hard to follow. | ||
36 | |||
37 | I either need to add a better build system (like the Linux kernel?) | ||
38 | or I need to split up busybox.defs.h into coherent chunks (i.e. | ||
39 | busybox.defs.h just has a bunch of: | ||
40 | |||
41 | #include "fileutils.h" | ||
42 | #include "shellutils.h" | ||
43 | |||
44 | which would then have smaller sets of #defines... | ||
45 | Hmm. Needs to be carefully thought out. | ||
46 | |||
47 | ----------------------- | ||
48 | |||
49 | |||
31 | 50 | ||
32 | Some known bugs, todo items, etc... | 51 | Some known bugs, todo items, etc... |
33 | 52 | ||
@@ -67,3 +86,22 @@ think???) | |||
67 | There is no exclude file(s) option to tar. LRP's packaging system can not | 86 | There is no exclude file(s) option to tar. LRP's packaging system can not |
68 | function without this. Will you have the time to add this soon? | 87 | function 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 | |||
99 | cd /mnt | ||
100 | mkdir BACKUP | ||
101 | mv * BACKUP | ||
102 | |||
103 | Today, "mv" behaved as a cp -a and my disk becomed full. It does not | ||
104 | work properly either when renaming a directory into something else | ||
105 | (it produces a lot of disk activity when doing this). | ||
106 | |||
107 | |||