diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-02-18 21:34:17 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-02-18 21:34:17 +0000 |
commit | e272915e1ffd6978ef3555ce4ae1798a9fbcee56 (patch) | |
tree | ab4773383a4ed9ee5ccb52b58f981267e15db6e0 /TODO | |
parent | bf5f009862f8dbc6d767c17064380790a047cce1 (diff) | |
download | busybox-e272915e1ffd6978ef3555ce4ae1798a9fbcee56.tar.gz |
Some updates for the day,
-Erik
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. * killall * stty * tr +* cut * expr (maybe?) (ash builtin?) +----------------------- + + +busybox.defs.h is too big and hard to follow. + +I either need to add a better build system (like the Linux kernel?) +or I need to split up busybox.defs.h into coherent chunks (i.e. +busybox.defs.h just has a bunch of: + +#include "fileutils.h" +#include "shellutils.h" + +which would then have smaller sets of #defines... +Hmm. Needs to be carefully thought out. + +----------------------- + + Some known bugs, todo items, etc... @@ -67,3 +86,22 @@ think???) There is no exclude file(s) option to tar. LRP's packaging system can not function without this. Will you have the time to add this soon? + +----------------------- + + +/bin/busybox --install -s which makes all links to commands that it + can support (an optionnal -s should be used for symbolic links instead + of hard links). + +----------------------- + +cd /mnt +mkdir BACKUP +mv * BACKUP + +Today, "mv" behaved as a cp -a and my disk becomed full. It does not +work properly either when renaming a directory into something else +(it produces a lot of disk activity when doing this). + + |