aboutsummaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-05-02 00:07:56 +0000
committerErik Andersen <andersen@codepoet.org>2000-05-02 00:07:56 +0000
commit5afc864422e8c572a13b3e48df47fd0e56cfbb74 (patch)
tree5a6ec9054284616133cdea4b62efdcbaddd061f9 /TODO
parent3c1217cfad0fb72f458223ae73e1ce612f5e9efd (diff)
downloadbusybox-5afc864422e8c572a13b3e48df47fd0e56cfbb74.tar.gz
More stuff
-Erik
Diffstat (limited to 'TODO')
-rw-r--r--TODO33
1 files changed, 33 insertions, 0 deletions
diff --git a/TODO b/TODO
index 15e9b30ad..909f8c51c 100644
--- a/TODO
+++ b/TODO
@@ -47,6 +47,39 @@ for GNU libc to be so big. I'm sure it can be a lot better.
(BTW, this is more informative if BB_FEATURE_NFSMOUNT is turned off...)
+Most wanted list:
+
+ [andersen@slag busybox]$ grep -l getgroups *.[ch]
+ test.c
+
+Policy violation. getgroups uses libc nss, which is unlikely
+to be present in an embedded system.
+
+ [andersen@slag busybox]$ grep -l getopt *.[ch]
+ dmesg.c
+ gunzip.c
+ hostname.c
+ mkfs_minix.c
+ printf.c
+ sfdisk.c
+
+ This includes the symbols:
+ getopt_long
+ optarg
+ opterr
+ optind
+
+To be replaced with a non-getopt parser.
+
+ [andersen@slag busybox]$ grep -l glob *.[ch]
+ gunzip.c
+ gzip.c
+ sh.c
+ tar.c
+ telnet.c
+
+Can check_wildcard_match() from utility.c do this job?
+
-----------------------