Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>2000-10-09 22:56:47 +0400
committerMark Whitley <markw@lineo.com>2000-10-09 22:56:47 +0400
commit872138de50b1c5bbf105b0243f5778fcb02b310b (patch)
treebae88fc4587a4d0aa9ec228c1006f4b364d0633e /busybox.c
parent7a86e61a54f75c6c457be177fb20f6dde27c06d3 (diff)
Added cmp and readlink applets from Matt Kraai.
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 825f40e7c..d25ddc185 100644
--- a/busybox.c
+++ b/busybox.c
@@ -40,6 +40,9 @@ const struct BB_applet applets[] = {
#ifdef BB_CHVT
{"chvt", chvt_main, _BB_DIR_USR_BIN, chvt_usage},
#endif
+#ifdef BB_CMP
+ {"cmp", cmp_main, _BB_DIR_USR_BIN, cmp_usage},
+#endif
#ifdef BB_CP_MV
{"cp", cp_mv_main, _BB_DIR_BIN, cp_usage},
#endif
@@ -235,6 +238,9 @@ const struct BB_applet applets[] = {
#ifdef BB_RDATE
{"rdate", rdate_main, _BB_DIR_USR_BIN, rdate_usage},
#endif
+#ifdef BB_READLINK
+ {"readlink", readlink_main, _BB_DIR_USR_BIN, readlink_usage},
+#endif
#ifdef BB_REBOOT
{"reboot", reboot_main, _BB_DIR_SBIN, reboot_usage},
#endif