summaryrefslogtreecommitdiff
path: root/busybox.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-09-20 19:22:26 +0000
committerEric Andersen <andersen@codepoet.org>2000-09-20 19:22:26 +0000
commitcff3fe3ae9696584f0c4bdad6860e8d94d5e99f9 (patch)
tree11ccadd6495c9e4fbd920896e94935551af4c14d /busybox.c
parent0cccdfaf363171c9f0761fbdb2028db0ea73e6b5 (diff)
downloadbusybox-w32-cff3fe3ae9696584f0c4bdad6860e8d94d5e99f9.tar.gz
busybox-w32-cff3fe3ae9696584f0c4bdad6860e8d94d5e99f9.tar.bz2
busybox-w32-cff3fe3ae9696584f0c4bdad6860e8d94d5e99f9.zip
Added dos2unix, unix2dos, and unrpm.c thanks to robotti@metconnect.com.
-Erik
Diffstat (limited to 'busybox.c')
-rw-r--r--busybox.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/busybox.c b/busybox.c
index a7c5d37a0..43871b781 100644
--- a/busybox.c
+++ b/busybox.c
@@ -64,6 +64,9 @@ const struct BB_applet applets[] = {
64#ifdef BB_DMESG 64#ifdef BB_DMESG
65 {"dmesg", dmesg_main, _BB_DIR_BIN, dmesg_usage}, 65 {"dmesg", dmesg_main, _BB_DIR_BIN, dmesg_usage},
66#endif 66#endif
67#ifdef BB_DOS2UNIX
68 {"dos2unix", dos2unix_main, _BB_DIR_USR_BIN, dos2unix_usage},
69#endif
67#ifdef BB_DU 70#ifdef BB_DU
68 {"du", du_main, _BB_DIR_USR_BIN, du_usage}, 71 {"du", du_main, _BB_DIR_USR_BIN, du_usage},
69#endif 72#endif
@@ -313,6 +316,12 @@ const struct BB_applet applets[] = {
313#ifdef BB_UNIQ 316#ifdef BB_UNIQ
314 {"uniq", uniq_main, _BB_DIR_USR_BIN, uniq_usage}, 317 {"uniq", uniq_main, _BB_DIR_USR_BIN, uniq_usage},
315#endif 318#endif
319#ifdef BB_UNIX2DOS
320 {"unix2dos", unix2dos_main, _BB_DIR_USR_BIN, unix2dos_usage},
321#endif
322#ifdef BB_UNRPM
323 {"unrpm", unrpm_main, _BB_DIR_USR_BIN, unrpm_usage},
324#endif
316#ifdef BB_UPDATE 325#ifdef BB_UPDATE
317 {"update", update_main, _BB_DIR_SBIN, update_usage}, 326 {"update", update_main, _BB_DIR_SBIN, update_usage},
318#endif 327#endif