diff options
author | Eric Andersen | 2000-09-20 19:22:26 +0000 |
---|---|---|
committer | Eric Andersen | 2000-09-20 19:22:26 +0000 |
commit | cff3fe3ae9696584f0c4bdad6860e8d94d5e99f9 (patch) | |
tree | 11ccadd6495c9e4fbd920896e94935551af4c14d /applets/busybox.c | |
parent | 0cccdfaf363171c9f0761fbdb2028db0ea73e6b5 (diff) | |
download | busybox-cff3fe3ae9696584f0c4bdad6860e8d94d5e99f9.zip busybox-cff3fe3ae9696584f0c4bdad6860e8d94d5e99f9.tar.gz |
Added dos2unix, unix2dos, and unrpm.c thanks to robotti@metconnect.com.
-Erik
Diffstat (limited to 'applets/busybox.c')
-rw-r--r-- | applets/busybox.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index a7c5d37..43871b7 100644 --- a/applets/busybox.c +++ b/applets/busybox.c @@ -64,6 +64,9 @@ const struct BB_applet applets[] = { #ifdef BB_DMESG {"dmesg", dmesg_main, _BB_DIR_BIN, dmesg_usage}, #endif +#ifdef BB_DOS2UNIX + {"dos2unix", dos2unix_main, _BB_DIR_USR_BIN, dos2unix_usage}, +#endif #ifdef BB_DU {"du", du_main, _BB_DIR_USR_BIN, du_usage}, #endif @@ -313,6 +316,12 @@ const struct BB_applet applets[] = { #ifdef BB_UNIQ {"uniq", uniq_main, _BB_DIR_USR_BIN, uniq_usage}, #endif +#ifdef BB_UNIX2DOS + {"unix2dos", unix2dos_main, _BB_DIR_USR_BIN, unix2dos_usage}, +#endif +#ifdef BB_UNRPM + {"unrpm", unrpm_main, _BB_DIR_USR_BIN, unrpm_usage}, +#endif #ifdef BB_UPDATE {"update", update_main, _BB_DIR_SBIN, update_usage}, #endif |