diff options
author | Glenn L McGrath | 2002-11-01 23:38:54 +0000 |
---|---|---|
committer | Glenn L McGrath | 2002-11-01 23:38:54 +0000 |
commit | bf1cc8b1b7a218a4c2f4bfb23ea44c74b65ebbf6 (patch) | |
tree | 4f0dbf581511eaaa3f0f86878f7e693a9faac6ce /include | |
parent | d6aec8619d1713f90dba9999fa8dc52976aad1bd (diff) | |
download | busybox-bf1cc8b1b7a218a4c2f4bfb23ea44c74b65ebbf6.zip busybox-bf1cc8b1b7a218a4c2f4bfb23ea44c74b65ebbf6.tar.gz |
Make uncompress a seperate applet so it doesnt pull in all the gunzip code
Diffstat (limited to 'include')
-rw-r--r-- | include/applets.h | 6 | ||||
-rw-r--r-- | include/usage.h | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/include/applets.h b/include/applets.h index 836ed99..1660b11 100644 --- a/include/applets.h +++ b/include/applets.h @@ -515,10 +515,8 @@ #ifdef CONFIG_UNAME APPLET(uname, uname_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif -#ifdef CONFIG_GUNZIP -# ifdef CONFIG_FEATURE_UNCOMPRESS - APPLET_ODDNAME("uncompress", gunzip_main, _BB_DIR_BIN, _BB_SUID_NEVER, gunzip) -# endif +#ifdef CONFIG_UNCOMPRESS + APPLET(uncompress, uncompress_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif #ifdef CONFIG_UNIQ APPLET(uniq, uniq_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) diff --git a/include/usage.h b/include/usage.h index fb126a0..8ea8c5a 100644 --- a/include/usage.h +++ b/include/usage.h @@ -2032,6 +2032,14 @@ "$ uname -a\n" \ "Linux debian 2.2.15pre13 #5 Tue Mar 14 16:03:50 MST 2000 i686 unknown\n" +#define uncompress_trivial_usage \ + "[-c] [-f] [ name ... ]" +#define uncompress_full_usage \ + "Uncompress .Z file[s]\n" \ + "Options:\n" \ + "\t-c\textract to stdout\n" \ + "\t-f\tforce overwrite an existing file\n" + #define uniq_trivial_usage \ "[OPTION]... [INPUT [OUTPUT]]" #define uniq_full_usage \ |