diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-05-02 00:07:56 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-05-02 00:07:56 +0000 |
commit | 5afc864422e8c572a13b3e48df47fd0e56cfbb74 (patch) | |
tree | 5a6ec9054284616133cdea4b62efdcbaddd061f9 /TODO | |
parent | 3c1217cfad0fb72f458223ae73e1ce612f5e9efd (diff) | |
download | busybox-w32-5afc864422e8c572a13b3e48df47fd0e56cfbb74.tar.gz busybox-w32-5afc864422e8c572a13b3e48df47fd0e56cfbb74.tar.bz2 busybox-w32-5afc864422e8c572a13b3e48df47fd0e56cfbb74.zip |
More stuff
-Erik
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -47,6 +47,39 @@ for GNU libc to be so big. I'm sure it can be a lot better. | |||
47 | 47 | ||
48 | (BTW, this is more informative if BB_FEATURE_NFSMOUNT is turned off...) | 48 | (BTW, this is more informative if BB_FEATURE_NFSMOUNT is turned off...) |
49 | 49 | ||
50 | Most wanted list: | ||
51 | |||
52 | [andersen@slag busybox]$ grep -l getgroups *.[ch] | ||
53 | test.c | ||
54 | |||
55 | Policy violation. getgroups uses libc nss, which is unlikely | ||
56 | to be present in an embedded system. | ||
57 | |||
58 | [andersen@slag busybox]$ grep -l getopt *.[ch] | ||
59 | dmesg.c | ||
60 | gunzip.c | ||
61 | hostname.c | ||
62 | mkfs_minix.c | ||
63 | printf.c | ||
64 | sfdisk.c | ||
65 | |||
66 | This includes the symbols: | ||
67 | getopt_long | ||
68 | optarg | ||
69 | opterr | ||
70 | optind | ||
71 | |||
72 | To be replaced with a non-getopt parser. | ||
73 | |||
74 | [andersen@slag busybox]$ grep -l glob *.[ch] | ||
75 | gunzip.c | ||
76 | gzip.c | ||
77 | sh.c | ||
78 | tar.c | ||
79 | telnet.c | ||
80 | |||
81 | Can check_wildcard_match() from utility.c do this job? | ||
82 | |||
50 | 83 | ||
51 | ----------------------- | 84 | ----------------------- |
52 | 85 | ||