diff options
author | Glenn L McGrath | 2003-01-28 01:45:48 +0000 |
---|---|---|
committer | Glenn L McGrath | 2003-01-28 01:45:48 +0000 |
commit | 21110a0aa2bda7346bdd916bbc027dfa38ee7c12 (patch) | |
tree | e2ecea1661a39605675307f029bbacc68faa97e9 /archival/Config.in | |
parent | a99534354a538573770d2b9835856fcfc017dab1 (diff) | |
download | busybox-21110a0aa2bda7346bdd916bbc027dfa38ee7c12.zip busybox-21110a0aa2bda7346bdd916bbc027dfa38ee7c12.tar.gz |
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.
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 affde32..cc65b6d 100644 --- a/archival/Config.in +++ b/archival/Config.in @@ -182,26 +182,29 @@ config CONFIG_FEATURE_TAR_GZIP help Please submit a patch to add help text for this item. -config CONFIG_FEATURE_TAR_OLD_FORMAT +config CONFIG_FEATURE_TAR_OLDGNU_COMPATABILITY bool " Enable support for old tar header format" - default n + default N depends on CONFIG_TAR help - Please submit a patch to add help text for this item. + This option is required to unpack archives created with + in the old GNU format, help to kill this old format by + repacking your ancient archives with the new format. -config CONFIG_FEATURE_GNUTAR_LONG_FILENAME - bool " Enable support for GNU long filenames" +config CONFIG_FEATURE_TAR_GNU_EXTENSIONS + bool " Enable support for some GNU tar extensions" default y depends on CONFIG_TAR help - Please submit a patch to add help text for this item. + With this option usybox supports the GNU long filename + and linkanmes. config CONFIG_FEATURE_UNARCHIVE_TAPE bool " Enable tape drive support" default n depends on CONFIG_TAR || CONFIG_CPIO help - Please submit a patch to add help text for this item. + I dont think this is needed anymore. config CONFIG_UNCOMPRESS bool "uncompress" |