aboutsummaryrefslogtreecommitdiff
path: root/archival
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2004-01-17 03:24:05 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2004-01-17 03:24:05 +0000
commitb03be7f5677b86acfe2f64b5a57e1f361e257f6c (patch)
tree729c907f1fd5cb1dca3a4b1ea9c5ad6a60356f4a /archival
parenta277e026635e110bdb3cede02b254019cc653918 (diff)
downloadbusybox-b03be7f5677b86acfe2f64b5a57e1f361e257f6c.tar.gz
Patch from Arthur Othieno, clarify common options between dpkg and dpkg-deb
Diffstat (limited to 'archival')
-rw-r--r--archival/Config.in43
1 files changed, 23 insertions, 20 deletions
diff --git a/archival/Config.in b/archival/Config.in
index 7807da1f1..daf3cf221 100644
--- a/archival/Config.in
+++ b/archival/Config.in
@@ -97,26 +97,6 @@ config CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY
However it saves space as none of the extra dpkg-deb, ar or tar options are
needed, they are linked to internally.
-config CONFIG_FEATURE_DEB_TAR_GZ
- bool " gzip debian packages (normal)"
- default y if CONFIG_DPKG || CONFIG_DPKG_DEB
- depends on CONFIG_DPKG || CONFIG_DPKG_DEB
- help
- This is the default compression method inside the debian ar file.
-
- If you want compatibility with standard .deb's you should say yes here.
-
-config CONFIG_FEATURE_DEB_TAR_BZ2
- bool " bzip2 debian packages"
- default n
- depends on CONFIG_DPKG || CONFIG_DPKG_DEB
- help
- This allows dpkg and dpkg-deb to extract deb's that are compressed internally
- with bzip2 instead of gzip.
-
- You only want this if you are creating your own custom debian packages that
- use an internal control.tar.bz2 or data.tar.bz2.
-
config CONFIG_GUNZIP
bool "gunzip"
default n
@@ -252,4 +232,27 @@ config CONFIG_FEATURE_UNARCHIVE_TAPE
help
I don't think this is needed anymore.
+comment "Common options for dpkg and dpkg_deb"
+ depends on CONFIG_DPKG || CONFIG_DPKG_DEB
+
+config CONFIG_FEATURE_DEB_TAR_GZ
+ bool " gzip debian packages (normal)"
+ default y if CONFIG_DPKG || CONFIG_DPKG_DEB
+ depends on CONFIG_DPKG || CONFIG_DPKG_DEB
+ help
+ This is the default compression method inside the debian ar file.
+
+ If you want compatibility with standard .deb's you should say yes here.
+
+config CONFIG_FEATURE_DEB_TAR_BZ2
+ bool " bzip2 debian packages"
+ default n
+ depends on CONFIG_DPKG || CONFIG_DPKG_DEB
+ help
+ This allows dpkg and dpkg-deb to extract deb's that are compressed internally
+ with bzip2 instead of gzip.
+
+ You only want this if you are creating your own custom debian packages that
+ use an internal control.tar.bz2 or data.tar.bz2.
+
endmenu