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 /archival/config.in | |
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 'archival/config.in')
-rw-r--r-- | archival/config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/archival/config.in b/archival/config.in index dd97909..689561b 100644 --- a/archival/config.in +++ b/archival/config.in @@ -18,6 +18,9 @@ if [ "$CONFIG_DPKG_DEB" = "y" ] ; then bool ' -x support only' CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY fi bool 'gunzip' CONFIG_GUNZIP +if [ "$CONFIG_GUNZIP" = "y" ]; then + bool ' Uncompress support' CONFIG_FEATURE_GUNZIP_UNCOMPRESS +fi bool 'gzip' CONFIG_GZIP bool 'rpm2cpio' CONFIG_RPM2CPIO bool 'tar' CONFIG_TAR @@ -31,5 +34,6 @@ fi if [ "$CONFIG_CPIO" = "y" -o "$CONFIG_TAR" = "y" ] ; then bool ' Enable tape drive support' CONFIG_FEATURE_UNARCHIVE_TAPE fi +bool 'uncompress' CONFIG_UNCOMPRESS bool 'unzip' CONFIG_UNZIP endmenu |