Added dos2unix, unix2dos, and unrpm.c thanks to robotti@metconnect.com.
 -Erik
diff --git a/applets/usage.c b/applets/usage.c
index cee2702..4a3d734 100644
--- a/applets/usage.c
+++ b/applets/usage.c
@@ -207,6 +207,15 @@
 	;
 #endif
 
+#if defined BB_DOS2UNIX
+const char dos2unix_usage[] =
+	"dos2unix < dosfile > unixfile\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+	"\nConverts a text file from dos format to unix format.\n"
+#endif
+	;
+#endif
+
 #if defined BB_DU
 const char du_usage[] =
 	"du [OPTION]... [FILE]...\n"
@@ -1307,6 +1316,24 @@
 	;
 #endif
 
+#if defined BB_UNIX2DOS
+const char unix2dos_usage[] =
+	"unix2dos < unixfile > dosfile\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+	"\nConverts a text file from unix format to dos format.\n"
+#endif
+	;
+#endif
+
+#if defined BB_UNRPM
+const char unrpm_usage[] =
+	"unrpm < package.rpm | gzip -d | cpio -idmuv\n"
+#ifndef BB_FEATURE_TRIVIAL_HELP
+	"\nExtracts an rpm archive.\n"
+#endif
+	;
+#endif
+
 #if defined BB_UPDATE
 const char update_usage[] =
 	"update [options]\n"