Patch from Konstantin Isakov <ikm@pisem.net>:
[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 bool 'gzip'         CONFIG_GZIP
22 bool 'rpm2cpio'     CONFIG_RPM2CPIO
23 bool 'tar'          CONFIG_TAR
24 if [ "$CONFIG_TAR" = "y" ] ; then
25     bool '  Enable archive creation'    CONFIG_FEATURE_TAR_CREATE
26     bool '  Enable -X and --exclude options (exclude files)'    CONFIG_FEATURE_TAR_EXCLUDE
27     bool '  Enable -z option'   CONFIG_FEATURE_TAR_GZIP
28     bool '  Enable support for old tar header format'   CONFIG_FEATURE_TAR_OLD_FORMAT
29     bool '  Enable support for GNU long filenames' CONFIG_FEATURE_GNUTAR_LONG_FILENAME
30 fi
31 if [ "$CONFIG_CPIO" = "y" -o "$CONFIG_TAR" = "y" ] ; then
32     bool '  Enable tape drive support' CONFIG_FEATURE_UNARCHIVE_TAPE
33 fi
34 bool 'unzip'        CONFIG_UNZIP
35 endmenu