Abstract read and seek in unarchiving code, convert bunzip to file descriptors, suppo...
[oweals/busybox.git] / archival / config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 mainmenu_option next_comment
7 comment 'Archival Utilities'
8
9 bool 'ar'           CONFIG_AR
10 if [ "$CONFIG_AR" = "y" ] ; then
11     bool '  Enable support for long filenames (not need for debs)'      CONFIG_FEATURE_AR_LONG_FILENAMES
12 fi
13 bool 'bunzip2'      CONFIG_BUNZIP2
14 bool 'cpio'         CONFIG_CPIO
15 bool 'dpkg'         CONFIG_DPKG
16 bool 'dpkg_deb'     CONFIG_DPKG_DEB
17 if [ "$CONFIG_DPKG_DEB" = "y" ] ; then
18     bool '  -x support only'    CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY
19 fi
20 bool 'gunzip'       CONFIG_GUNZIP
21 if [ "$CONFIG_GUNZIP" = "y" ]; then
22     bool '  Uncompress support'         CONFIG_FEATURE_GUNZIP_UNCOMPRESS
23 fi
24 bool 'gzip'         CONFIG_GZIP
25 bool 'rpm2cpio'     CONFIG_RPM2CPIO
26 bool 'tar'          CONFIG_TAR
27 if [ "$CONFIG_TAR" = "y" ] ; then
28     bool '  Enable archive creation'    CONFIG_FEATURE_TAR_CREATE
29     bool '  Enable -j option to handle .tar.bz2 files'  CONFIG_FEATURE_TAR_BZIP2
30     bool '  Enable -X and --exclude options (exclude files)'    CONFIG_FEATURE_TAR_EXCLUDE
31     bool '  Enable -z option'   CONFIG_FEATURE_TAR_GZIP
32     bool '  Enable support for old tar header format'   CONFIG_FEATURE_TAR_OLD_FORMAT
33     bool '  Enable support for GNU long filenames' CONFIG_FEATURE_GNUTAR_LONG_FILENAME
34 fi
35 if [ "$CONFIG_CPIO" = "y" -o "$CONFIG_TAR" = "y" ] ; then
36     bool '  Enable tape drive support' CONFIG_FEATURE_UNARCHIVE_TAPE
37 fi
38 bool 'uncompress'   CONFIG_UNCOMPRESS
39 bool 'unzip'        CONFIG_UNZIP
40 endmenu