summaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-01-04 01:10:25 +0000
committerErik Andersen <andersen@codepoet.org>2000-01-04 01:10:25 +0000
commit7dc160721ee3ceb76240a43d1454b45aaa9dbee4 (patch)
tree7532471be456e2c9f11eab88cb34f1e38abd184f /applets
parent9c88cac5cbfb2ff70f800ee5bb3289e925aaa65f (diff)
downloadbusybox-w32-7dc160721ee3ceb76240a43d1454b45aaa9dbee4.tar.gz
busybox-w32-7dc160721ee3ceb76240a43d1454b45aaa9dbee4.tar.bz2
busybox-w32-7dc160721ee3ceb76240a43d1454b45aaa9dbee4.zip
Bunches of fixes. Typos, bugs, etc.
Added 'gunzip -t'. inittab support _almost_ works (but it isn't ready for prime time useage yet). -Erik
Diffstat (limited to 'applets')
-rw-r--r--applets/busybox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/applets/busybox.c b/applets/busybox.c
index 403b14008..a35306915 100644
--- a/applets/busybox.c
+++ b/applets/busybox.c
@@ -102,6 +102,9 @@ static const struct Applet applets[] = {
102#ifdef BB_LN //bin 102#ifdef BB_LN //bin
103 {"ln", ln_main}, 103 {"ln", ln_main},
104#endif 104#endif
105#ifdef BB_LOADACM //usr/bin
106 {"loadacm", loadacm_main},
107#endif
105#ifdef BB_LOADFONT //usr/bin 108#ifdef BB_LOADFONT //usr/bin
106 {"loadfont", loadfont_main}, 109 {"loadfont", loadfont_main},
107#endif 110#endif
@@ -232,9 +235,6 @@ static const struct Applet applets[] = {
232#ifdef BB_GZIP //bin 235#ifdef BB_GZIP //bin
233 {"gzip", gzip_main}, 236 {"gzip", gzip_main},
234#endif 237#endif
235#ifdef BB_LOADACM //usr/bin
236 {"loadacm", loadacm_main},
237#endif
238 {0} 238 {0}
239}; 239};
240 240