[BusyBox-cvs] busybox/include applets.h, 1.108, 1.109 usage.h, 1.180, 1.181

Glenn McGrath bug1 at busybox.net
Sat Dec 20 07:30:37 UTC 2003


Update of /var/cvs/busybox/include
In directory nail:/tmp/cvs-serv4209/include

Modified Files:
	applets.h usage.h 
Log Message:
New applet, rx, by Christopher Hoover


Index: applets.h
===================================================================
RCS file: /var/cvs/busybox/include/applets.h,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -d -r1.108 -r1.109
--- applets.h	20 Dec 2003 07:07:21 -0000	1.108
+++ applets.h	20 Dec 2003 07:30:34 -0000	1.109
@@ -502,6 +502,9 @@
 #ifdef CONFIG_RUN_PARTS
 	APPLET_ODDNAME("run-parts", run_parts_main, _BB_DIR_BIN, _BB_SUID_NEVER, run_parts)
 #endif	
+#ifdef CONFIG_RX
+	APPLET(rx, rx_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)
+#endif
 #ifdef CONFIG_SED
 	APPLET(sed, sed_main, _BB_DIR_BIN, _BB_SUID_NEVER)
 #endif

Index: usage.h
===================================================================
RCS file: /var/cvs/busybox/include/usage.h,v
retrieving revision 1.180
retrieving revision 1.181
diff -u -d -r1.180 -r1.181
--- usage.h	20 Dec 2003 07:16:21 -0000	1.180
+++ usage.h	20 Dec 2003 07:30:34 -0000	1.181
@@ -2067,6 +2067,13 @@
 	"\t-a ARG\tPass ARG as an argument for every program invoked.\n" \
 	"\t-u MASK\tSet the umask to MASK before executing every program."
 
+#define rx_trivial_usage \
+	"FILE"
+#define rx_full_usage \
+	"Receive a file using the xmodem protocol."
+#define rx_example_usage \
+	"$ rx /tmp/foo\n"
+
 #define sed_trivial_usage \
 	"[-nef] pattern [files...]"
 #define sed_full_usage \




More information about the busybox-cvs mailing list