aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-09-03 21:54:46 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-09-03 21:54:46 +0000
commitd4b719878f5a08986d0a3dc493aad90d4466752e (patch)
tree64d7c96a59ae67227884cd26662eff01762edb6e /include
parenta2e1eea189981e03b2590c2cd59b9ae65a9cea4f (diff)
downloadbusybox-d4b719878f5a08986d0a3dc493aad90d4466752e.tar.gz
kbd_mode: fix non-ASCII letters in comments
install: support -D
Diffstat (limited to 'include')
-rw-r--r--include/usage.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/include/usage.h b/include/usage.h
index b901090b8..47a648f21 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -1873,19 +1873,20 @@
)
#define install_trivial_usage \
- "[-cgmops] [sources] dest|directory"
+ "[-cdDsp] [-o USER] [-g GRP] [-m MODE] [source] dest|directory"
#define install_full_usage "\n\n" \
"Copy files and set attributes\n" \
"\nOptions:" \
- "\n -c Copy the file, default" \
+ "\n -c Just copy (default)" \
"\n -d Create directories" \
- "\n -g Set group ownership" \
- "\n -m Set permissions" \
- "\n -o Set ownership" \
+ "\n -D Create leading directories" \
+ "\n -s Strip symbol table" \
"\n -p Preserve date" \
- "\n -s Strip symbol tables" \
+ "\n -o USER Set ownership" \
+ "\n -g GRP Set group ownership" \
+ "\n -m MODE Set permissions" \
USE_SELINUX( \
- "\n -Z Set security context of copy" \
+ "\n -Z Set security context" \
)
/* would need to make the " | " optional depending on more than one selected: */