diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-01-04 01:10:25 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-01-04 01:10:25 +0000 |
commit | 7dc160721ee3ceb76240a43d1454b45aaa9dbee4 (patch) | |
tree | 7532471be456e2c9f11eab88cb34f1e38abd184f /applets/busybox.c | |
parent | 9c88cac5cbfb2ff70f800ee5bb3289e925aaa65f (diff) |
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/busybox.c')
-rw-r--r-- | applets/busybox.c | 6 |
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[] = { #ifdef BB_LN //bin {"ln", ln_main}, #endif +#ifdef BB_LOADACM //usr/bin + {"loadacm", loadacm_main}, +#endif #ifdef BB_LOADFONT //usr/bin {"loadfont", loadfont_main}, #endif @@ -232,9 +235,6 @@ static const struct Applet applets[] = { #ifdef BB_GZIP //bin {"gzip", gzip_main}, #endif -#ifdef BB_LOADACM //usr/bin - {"loadacm", loadacm_main}, -#endif {0} }; |