aboutsummaryrefslogtreecommitdiff
path: root/archival
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-17 20:56:36 +0200
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-19 18:35:26 +0200
commit07c3f3802d68880825052fb7902534bd31dc3f05 (patch)
treea296152d451acf6a79bc7215c7000d23aaa176b7 /archival
parente6a1a2321c47d61868f66beb9a258399cdb09eb2 (diff)
downloadbusybox-w32-07c3f3802d68880825052fb7902534bd31dc3f05.tar.gz
busybox-w32-07c3f3802d68880825052fb7902534bd31dc3f05.tar.bz2
busybox-w32-07c3f3802d68880825052fb7902534bd31dc3f05.zip
Config.in: mark all applets POSIX only
Diffstat (limited to 'archival')
-rw-r--r--archival/Config.in15
1 files changed, 15 insertions, 0 deletions
diff --git a/archival/Config.in b/archival/Config.in
index deacc2822..15d6ae5c6 100644
--- a/archival/Config.in
+++ b/archival/Config.in
@@ -32,6 +32,7 @@ config FEATURE_SEAMLESS_Z
32config AR 32config AR
33 bool "ar" 33 bool "ar"
34 default n 34 default n
35 depends on PLATFORM_POSIX
35 help 36 help
36 ar is an archival utility program used to create, modify, and 37 ar is an archival utility program used to create, modify, and
37 extract contents from archives. An archive is a single file holding 38 extract contents from archives. An archive is a single file holding
@@ -72,6 +73,7 @@ config FEATURE_AR_CREATE
72config BUNZIP2 73config BUNZIP2
73 bool "bunzip2" 74 bool "bunzip2"
74 default n 75 default n
76 depends on PLATFORM_POSIX
75 help 77 help
76 bunzip2 is a compression utility using the Burrows-Wheeler block 78 bunzip2 is a compression utility using the Burrows-Wheeler block
77 sorting text compression algorithm, and Huffman coding. Compression 79 sorting text compression algorithm, and Huffman coding. Compression
@@ -85,6 +87,7 @@ config BUNZIP2
85config BZIP2 87config BZIP2
86 bool "bzip2" 88 bool "bzip2"
87 default n 89 default n
90 depends on PLATFORM_POSIX
88 help 91 help
89 bzip2 is a compression utility using the Burrows-Wheeler block 92 bzip2 is a compression utility using the Burrows-Wheeler block
90 sorting text compression algorithm, and Huffman coding. Compression 93 sorting text compression algorithm, and Huffman coding. Compression
@@ -98,6 +101,7 @@ config BZIP2
98config CPIO 101config CPIO
99 bool "cpio" 102 bool "cpio"
100 default n 103 default n
104 depends on PLATFORM_POSIX
101 help 105 help
102 cpio is an archival utility program used to create, modify, and 106 cpio is an archival utility program used to create, modify, and
103 extract contents from archives. 107 extract contents from archives.
@@ -127,6 +131,7 @@ config FEATURE_CPIO_P
127config DPKG 131config DPKG
128 bool "dpkg" 132 bool "dpkg"
129 default n 133 default n
134 depends on PLATFORM_POSIX
130 select FEATURE_SEAMLESS_GZ 135 select FEATURE_SEAMLESS_GZ
131 help 136 help
132 dpkg is a medium-level tool to install, build, remove and manage 137 dpkg is a medium-level tool to install, build, remove and manage
@@ -138,6 +143,7 @@ config DPKG
138config DPKG_DEB 143config DPKG_DEB
139 bool "dpkg_deb" 144 bool "dpkg_deb"
140 default n 145 default n
146 depends on PLATFORM_POSIX
141 select FEATURE_SEAMLESS_GZ 147 select FEATURE_SEAMLESS_GZ
142 help 148 help
143 dpkg-deb unpacks and provides information about Debian archives. 149 dpkg-deb unpacks and provides information about Debian archives.
@@ -160,6 +166,7 @@ config FEATURE_DPKG_DEB_EXTRACT_ONLY
160config GUNZIP 166config GUNZIP
161 bool "gunzip" 167 bool "gunzip"
162 default n 168 default n
169 depends on PLATFORM_POSIX
163 help 170 help
164 gunzip is used to decompress archives created by gzip. 171 gunzip is used to decompress archives created by gzip.
165 You can use the `-t' option to test the integrity of 172 You can use the `-t' option to test the integrity of
@@ -168,6 +175,7 @@ config GUNZIP
168config GZIP 175config GZIP
169 bool "gzip" 176 bool "gzip"
170 default n 177 default n
178 depends on PLATFORM_POSIX
171 help 179 help
172 gzip is used to compress files. 180 gzip is used to compress files.
173 It's probably the most widely used UNIX compression program. 181 It's probably the most widely used UNIX compression program.
@@ -182,6 +190,7 @@ config FEATURE_GZIP_LONG_OPTIONS
182config LZOP 190config LZOP
183 bool "lzop" 191 bool "lzop"
184 default n 192 default n
193 depends on PLATFORM_POSIX
185 help 194 help
186 Lzop compression/decompresion. 195 Lzop compression/decompresion.
187 196
@@ -197,18 +206,21 @@ config LZOP_COMPR_HIGH
197config RPM2CPIO 206config RPM2CPIO
198 bool "rpm2cpio" 207 bool "rpm2cpio"
199 default n 208 default n
209 depends on PLATFORM_POSIX
200 help 210 help
201 Converts an RPM file into a CPIO archive. 211 Converts an RPM file into a CPIO archive.
202 212
203config RPM 213config RPM
204 bool "rpm" 214 bool "rpm"
205 default n 215 default n
216 depends on PLATFORM_POSIX
206 help 217 help
207 Mini RPM applet - queries and extracts RPM packages. 218 Mini RPM applet - queries and extracts RPM packages.
208 219
209config TAR 220config TAR
210 bool "tar" 221 bool "tar"
211 default n 222 default n
223 depends on PLATFORM_POSIX
212 help 224 help
213 tar is an archiving program. It's commonly used with gzip to 225 tar is an archiving program. It's commonly used with gzip to
214 create compressed archives. It's probably the most widely used 226 create compressed archives. It's probably the most widely used
@@ -300,6 +312,7 @@ config FEATURE_TAR_SELINUX
300config UNCOMPRESS 312config UNCOMPRESS
301 bool "uncompress" 313 bool "uncompress"
302 default n 314 default n
315 depends on PLATFORM_POSIX
303 help 316 help
304 uncompress is used to decompress archives created by compress. 317 uncompress is used to decompress archives created by compress.
305 Not much used anymore, replaced by gzip/gunzip. 318 Not much used anymore, replaced by gzip/gunzip.
@@ -307,6 +320,7 @@ config UNCOMPRESS
307config UNLZMA 320config UNLZMA
308 bool "unlzma" 321 bool "unlzma"
309 default n 322 default n
323 depends on PLATFORM_POSIX
310 help 324 help
311 unlzma is a compression utility using the Lempel-Ziv-Markov chain 325 unlzma is a compression utility using the Lempel-Ziv-Markov chain
312 compression algorithm, and range coding. Compression 326 compression algorithm, and range coding. Compression
@@ -330,6 +344,7 @@ config FEATURE_LZMA_FAST
330config UNZIP 344config UNZIP
331 bool "unzip" 345 bool "unzip"
332 default n 346 default n
347 depends on PLATFORM_POSIX
333 help 348 help
334 unzip will list or extract files from a ZIP archive, 349 unzip will list or extract files from a ZIP archive,
335 commonly found on DOS/WIN systems. The default behavior 350 commonly found on DOS/WIN systems. The default behavior