diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-01-28 01:45:48 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-01-28 01:45:48 +0000 |
commit | 026a84eeaccc97fc21ca197bcaeaaa6aecb00822 (patch) | |
tree | e2ecea1661a39605675307f029bbacc68faa97e9 /archival/Config.in | |
parent | 143015739905569afad0a23daccec98f06bc02d4 (diff) | |
download | busybox-w32-026a84eeaccc97fc21ca197bcaeaaa6aecb00822.tar.gz busybox-w32-026a84eeaccc97fc21ca197bcaeaaa6aecb00822.tar.bz2 busybox-w32-026a84eeaccc97fc21ca197bcaeaaa6aecb00822.zip |
Fix long standing bug with old gnu tar files, add a check so tar will
complain "unknown file type" if it tries to extract an oldgnu tar file
and TAR_FEATURE_OLDGNU_COMPATABILITY sint defined.
Print a warning if unisupported gnu extensions are encountered.
git-svn-id: svn://busybox.net/trunk/busybox@6488 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'archival/Config.in')
-rw-r--r-- | archival/Config.in | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/archival/Config.in b/archival/Config.in index affde32c8..cc65b6db4 100644 --- a/archival/Config.in +++ b/archival/Config.in | |||
@@ -182,26 +182,29 @@ config CONFIG_FEATURE_TAR_GZIP | |||
182 | help | 182 | help |
183 | Please submit a patch to add help text for this item. | 183 | Please submit a patch to add help text for this item. |
184 | 184 | ||
185 | config CONFIG_FEATURE_TAR_OLD_FORMAT | 185 | config CONFIG_FEATURE_TAR_OLDGNU_COMPATABILITY |
186 | bool " Enable support for old tar header format" | 186 | bool " Enable support for old tar header format" |
187 | default n | 187 | default N |
188 | depends on CONFIG_TAR | 188 | depends on CONFIG_TAR |
189 | help | 189 | help |
190 | Please submit a patch to add help text for this item. | 190 | This option is required to unpack archives created with |
191 | in the old GNU format, help to kill this old format by | ||
192 | repacking your ancient archives with the new format. | ||
191 | 193 | ||
192 | config CONFIG_FEATURE_GNUTAR_LONG_FILENAME | 194 | config CONFIG_FEATURE_TAR_GNU_EXTENSIONS |
193 | bool " Enable support for GNU long filenames" | 195 | bool " Enable support for some GNU tar extensions" |
194 | default y | 196 | default y |
195 | depends on CONFIG_TAR | 197 | depends on CONFIG_TAR |
196 | help | 198 | help |
197 | Please submit a patch to add help text for this item. | 199 | With this option usybox supports the GNU long filename |
200 | and linkanmes. | ||
198 | 201 | ||
199 | config CONFIG_FEATURE_UNARCHIVE_TAPE | 202 | config CONFIG_FEATURE_UNARCHIVE_TAPE |
200 | bool " Enable tape drive support" | 203 | bool " Enable tape drive support" |
201 | default n | 204 | default n |
202 | depends on CONFIG_TAR || CONFIG_CPIO | 205 | depends on CONFIG_TAR || CONFIG_CPIO |
203 | help | 206 | help |
204 | Please submit a patch to add help text for this item. | 207 | I dont think this is needed anymore. |
205 | 208 | ||
206 | config CONFIG_UNCOMPRESS | 209 | config CONFIG_UNCOMPRESS |
207 | bool "uncompress" | 210 | bool "uncompress" |