aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-10-22 19:19:13 +0000
committerEric Andersen <andersen@codepoet.org>2002-10-22 19:19:13 +0000
commit72e1212ad8a89eee70f65e469d58e79553db574c (patch)
tree2dec8f8509ef9d9e2519dff0238d3b9f25196b80
parentf02c26f1ef4777d2f0490d241bb4f465c2bd97a6 (diff)
downloadbusybox-w32-72e1212ad8a89eee70f65e469d58e79553db574c.tar.gz
busybox-w32-72e1212ad8a89eee70f65e469d58e79553db574c.tar.bz2
busybox-w32-72e1212ad8a89eee70f65e469d58e79553db574c.zip
vodz writes:
Oops... Last patch 63 have small typo (stable/devel) mixing. Attached patch removing lines from TODO also :)
-rw-r--r--TODO12
-rw-r--r--include/applets.h4
2 files changed, 2 insertions, 14 deletions
diff --git a/TODO b/TODO
index 7962b9ecf..f28928626 100644
--- a/TODO
+++ b/TODO
@@ -3,11 +3,6 @@ is listed here doesn't mean that it is going to be added to busybox,
3or that doing so is even a good idea. It just means that I _might_ get 3or that doing so is even a good idea. It just means that I _might_ get
4around to it some time. If you have any good ideas, please let me know. 4around to it some time. If you have any good ideas, please let me know.
5 5
6* login/sulogin/passwd/etc are part of tinylogin. We are in the
7 process of merging these applications into busybox, since the
8 new build system allows us to add Libraries (i.e. libcrypt),
9 when certain applets are enabled.
10
11* We _were_ going to split networking apps into a new package called 6* We _were_ going to split networking apps into a new package called
12 netkit-tiny. Per discussions on the mailing list, this isn't going 7 netkit-tiny. Per discussions on the mailing list, this isn't going
13 to happen. False alarm. Sorry about the confusion. 8 to happen. False alarm. Sorry about the confusion.
@@ -18,10 +13,7 @@ around to it some time. If you have any good ideas, please let me know.
18 13
19Possible apps to include some time: 14Possible apps to include some time:
20 15
21* hwclock
22* group/commonize strings, remove dups (for i18n, l10n) 16* group/commonize strings, remove dups (for i18n, l10n)
23* login/sulogin/passwd/etc are part of tinylogin. These are
24 being merged into busybox as time allows.
25 17
26----------- 18-----------
27 19
@@ -50,10 +42,6 @@ and then start with the biggest things and make them smaller...
50 42
51----------------------- 43-----------------------
52 44
53 du.c probably ought to have an -x switch like GNU du does...
54
55-----------------------
56
57xargs could use a -l option 45xargs could use a -l option
58 46
59------------------------------------------------------------------ 47------------------------------------------------------------------
diff --git a/include/applets.h b/include/applets.h
index de393be8f..75f5436b0 100644
--- a/include/applets.h
+++ b/include/applets.h
@@ -107,10 +107,10 @@
107#ifdef CONFIG_CPIO 107#ifdef CONFIG_CPIO
108 APPLET(cpio, cpio_main, _BB_DIR_BIN, _BB_SUID_NEVER) 108 APPLET(cpio, cpio_main, _BB_DIR_BIN, _BB_SUID_NEVER)
109#endif 109#endif
110#ifdef BB_CROND 110#ifdef CONFIG_CROND
111 APPLET(crond, crond_main, _BB_DIR_USR_SBIN) 111 APPLET(crond, crond_main, _BB_DIR_USR_SBIN)
112#endif 112#endif
113#ifdef BB_CRONTAB 113#ifdef CONFIG_CRONTAB
114 APPLET(crontab, crontab_main, _BB_DIR_USR_BIN) 114 APPLET(crontab, crontab_main, _BB_DIR_USR_BIN)
115#endif 115#endif
116#ifdef CONFIG_CUT 116#ifdef CONFIG_CUT