aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/applets.h3
-rw-r--r--include/usage.h8
2 files changed, 10 insertions, 1 deletions
diff --git a/include/applets.h b/include/applets.h
index ea196cb66..aa112c30b 100644
--- a/include/applets.h
+++ b/include/applets.h
@@ -68,6 +68,9 @@
68 APPLET(bunzip2, bunzip2_main, _BB_DIR_USR_BIN) 68 APPLET(bunzip2, bunzip2_main, _BB_DIR_USR_BIN)
69#endif 69#endif
70 APPLET_NOUSAGE("busybox", busybox_main, _BB_DIR_BIN) 70 APPLET_NOUSAGE("busybox", busybox_main, _BB_DIR_BIN)
71#ifdef CONFIG_BUNZIP2
72 APPLET(bzcat, bunzip2_main, _BB_DIR_USR_BIN)
73#endif
71#ifdef CONFIG_CAT 74#ifdef CONFIG_CAT
72 APPLET(cat, cat_main, _BB_DIR_BIN) 75 APPLET(cat, cat_main, _BB_DIR_BIN)
73#endif 76#endif
diff --git a/include/usage.h b/include/usage.h
index 12d5e1ed5..df1c18ec7 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -52,11 +52,17 @@
52 "bar" 52 "bar"
53 53
54#define bunzip2_trivial_usage \ 54#define bunzip2_trivial_usage \
55 "FILE" 55 "[-c] FILE"
56#define bunzip2_full_usage \ 56#define bunzip2_full_usage \
57 "Uncompress FILE to current directory, stripping its .bz2 extension.\n"\ 57 "Uncompress FILE to current directory, stripping its .bz2 extension.\n"\
58 " -c output to stdout\n"\
58 " -k is assumed" 59 " -k is assumed"
59 60
61#define bzcat_trivial_usage \
62 "FILE"
63#define bzcat_full_usage \
64 "Uncompress to stdout."
65
60#define cat_trivial_usage \ 66#define cat_trivial_usage \
61 "[FILE]..." 67 "[FILE]..."
62#define cat_full_usage \ 68#define cat_full_usage \