aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-02-09 11:37:21 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-02-09 11:37:21 +0000
commitd56e3ccf960a6773ea7939811728f1942cc493ac (patch)
treecca31e184ef73cada7b1786c5b47f8aacf6b672c /include
parent937b10f35dc9fb74220ffa8d3f8e98f07f732f79 (diff)
downloadbusybox-w32-d56e3ccf960a6773ea7939811728f1942cc493ac.tar.gz
busybox-w32-d56e3ccf960a6773ea7939811728f1942cc493ac.tar.bz2
busybox-w32-d56e3ccf960a6773ea7939811728f1942cc493ac.zip
microcom: split -d (delay) option away from -t
Diffstat (limited to 'include')
-rw-r--r--include/usage.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/usage.h b/include/usage.h
index 98d3f3c96..37cefeab1 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -2235,9 +2235,15 @@ USE_FEATURE_BRCTL_FANCY("\n" \
2235 " n Disallow write access to your terminal" 2235 " n Disallow write access to your terminal"
2236 2236
2237#define microcom_trivial_usage \ 2237#define microcom_trivial_usage \
2238 "[-s speed] tty-name" 2238 "[-d DELAY] [-t TIMEOUT] [-s SPEED] [-X] TTY"
2239#define microcom_full_usage \ 2239#define microcom_full_usage \
2240 "" 2240 "Copy bytes for stdin to TTY and from TTY to stdout" \
2241 "\n\nOptions:" \
2242 "\n -d Wait up to DELAY ms for TTY output before sending every" \
2243 "\n next byte to it" \
2244 "\n -t Exit if both stdin and TTY are silent for TIMEOUT ms" \
2245 "\n -s Set serial line to SPEED"
2246 "\n -X Disable special meaning of NUL and Ctrl-X from stdin"
2241 2247
2242#define mkdir_trivial_usage \ 2248#define mkdir_trivial_usage \
2243 "[OPTION] DIRECTORY..." 2249 "[OPTION] DIRECTORY..."