diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-03-05 08:07:00 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-03-05 08:07:00 +0000 |
commit | fb002d0df02ce53e8bcc03fe6e451b250b4d519e (patch) | |
tree | a1237f67ea857f4c83e6f51873177a9d3e5f16f0 /applets | |
parent | 66be5e7e29ad6fa457376996b4c08d307b92a6f1 (diff) | |
download | busybox-w32-fb002d0df02ce53e8bcc03fe6e451b250b4d519e.tar.gz busybox-w32-fb002d0df02ce53e8bcc03fe6e451b250b4d519e.tar.bz2 busybox-w32-fb002d0df02ce53e8bcc03fe6e451b250b4d519e.zip |
Add in tr and dirname
-Erik
Diffstat (limited to 'applets')
-rw-r--r-- | applets/busybox.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index 991801310..36cf0a05c 100644 --- a/applets/busybox.c +++ b/applets/busybox.c | |||
@@ -76,6 +76,9 @@ static const struct Applet applets[] = { | |||
76 | #ifdef BB_DF //bin | 76 | #ifdef BB_DF //bin |
77 | {"df", df_main}, | 77 | {"df", df_main}, |
78 | #endif | 78 | #endif |
79 | #ifdef BB_DIRNAME //usr/bin | ||
80 | {"dirname", dirname_main}, | ||
81 | #endif | ||
79 | #ifdef BB_DMESG //bin | 82 | #ifdef BB_DMESG //bin |
80 | {"dmesg", dmesg_main}, | 83 | {"dmesg", dmesg_main}, |
81 | #endif | 84 | #endif |
@@ -261,6 +264,9 @@ static const struct Applet applets[] = { | |||
261 | #ifdef BB_TOUCH //usr/bin | 264 | #ifdef BB_TOUCH //usr/bin |
262 | {"touch", touch_main}, | 265 | {"touch", touch_main}, |
263 | #endif | 266 | #endif |
267 | #ifdef BB_TR //usr/bin | ||
268 | {"tr", tr_main}, | ||
269 | #endif | ||
264 | #ifdef BB_TRUE_FALSE //bin | 270 | #ifdef BB_TRUE_FALSE //bin |
265 | {"true", true_main}, | 271 | {"true", true_main}, |
266 | {"false", false_main}, | 272 | {"false", false_main}, |