aboutsummaryrefslogtreecommitdiff
path: root/busybox.c
diff options
context:
space:
mode:
Diffstat (limited to 'busybox.c')
-rw-r--r--busybox.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/busybox.c b/busybox.c
index 991801310..36cf0a05c 100644
--- a/busybox.c
+++ b/busybox.c
@@ -76,6 +76,9 @@ static const struct Applet applets[] = {
#ifdef BB_DF //bin
{"df", df_main},
#endif
+#ifdef BB_DIRNAME //usr/bin
+ {"dirname", dirname_main},
+#endif
#ifdef BB_DMESG //bin
{"dmesg", dmesg_main},
#endif
@@ -261,6 +264,9 @@ static const struct Applet applets[] = {
#ifdef BB_TOUCH //usr/bin
{"touch", touch_main},
#endif
+#ifdef BB_TR //usr/bin
+ {"tr", tr_main},
+#endif
#ifdef BB_TRUE_FALSE //bin
{"true", true_main},
{"false", false_main},