aboutsummaryrefslogtreecommitdiff
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
parenta277e026635e110bdb3cede02b254019cc653918 (diff)
downloadbusybox-w32-b03be7f5677b86acfe2f64b5a57e1f361e257f6c.tar.gz
busybox-w32-b03be7f5677b86acfe2f64b5a57e1f361e257f6c.tar.bz2
busybox-w32-b03be7f5677b86acfe2f64b5a57e1f361e257f6c.zip
Patch from Arthur Othieno, clarify common options between dpkg and dpkg-deb
-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
97 However it saves space as none of the extra dpkg-deb, ar or tar options are 97 However it saves space as none of the extra dpkg-deb, ar or tar options are
98 needed, they are linked to internally. 98 needed, they are linked to internally.
99 99
100config CONFIG_FEATURE_DEB_TAR_GZ
101 bool " gzip debian packages (normal)"
102 default y if CONFIG_DPKG || CONFIG_DPKG_DEB
103 depends on CONFIG_DPKG || CONFIG_DPKG_DEB
104 help
105 This is the default compression method inside the debian ar file.
106
107 If you want compatibility with standard .deb's you should say yes here.
108
109config CONFIG_FEATURE_DEB_TAR_BZ2
110 bool " bzip2 debian packages"
111 default n
112 depends on CONFIG_DPKG || CONFIG_DPKG_DEB
113 help
114 This allows dpkg and dpkg-deb to extract deb's that are compressed internally
115 with bzip2 instead of gzip.
116
117 You only want this if you are creating your own custom debian packages that
118 use an internal control.tar.bz2 or data.tar.bz2.
119
120config CONFIG_GUNZIP 100config CONFIG_GUNZIP
121 bool "gunzip" 101 bool "gunzip"
122 default n 102 default n
@@ -252,4 +232,27 @@ config CONFIG_FEATURE_UNARCHIVE_TAPE
252 help 232 help
253 I don't think this is needed anymore. 233 I don't think this is needed anymore.
254 234
235comment "Common options for dpkg and dpkg_deb"
236 depends on CONFIG_DPKG || CONFIG_DPKG_DEB
237
238config CONFIG_FEATURE_DEB_TAR_GZ
239 bool " gzip debian packages (normal)"
240 default y if CONFIG_DPKG || CONFIG_DPKG_DEB
241 depends on CONFIG_DPKG || CONFIG_DPKG_DEB
242 help
243 This is the default compression method inside the debian ar file.
244
245 If you want compatibility with standard .deb's you should say yes here.
246
247config CONFIG_FEATURE_DEB_TAR_BZ2
248 bool " bzip2 debian packages"
249 default n
250 depends on CONFIG_DPKG || CONFIG_DPKG_DEB
251 help
252 This allows dpkg and dpkg-deb to extract deb's that are compressed internally
253 with bzip2 instead of gzip.
254
255 You only want this if you are creating your own custom debian packages that
256 use an internal control.tar.bz2 or data.tar.bz2.
257
255endmenu 258endmenu