blob: dd97909f9eee1a74bf0a7780d24fe1bc6d3a243a [file] [log] [blame]
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6mainmenu_option next_comment
7comment 'Archival Utilities'
8
9bool 'ar' CONFIG_AR
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000010if [ "$CONFIG_AR" = "y" ] ; then
11 bool ' Enable support for long filenames (not need for debs)' CONFIG_FEATURE_AR_LONG_FILENAMES
12fi
Eric Andersenbdfd0d72001-10-24 05:00:29 +000013bool 'bunzip2' CONFIG_BUNZIP2
14bool 'cpio' CONFIG_CPIO
15bool 'dpkg' CONFIG_DPKG
16bool 'dpkg_deb' CONFIG_DPKG_DEB
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000017if [ "$CONFIG_DPKG_DEB" = "y" ] ; then
18 bool ' -x support only' CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY
19fi
Eric Andersenbdfd0d72001-10-24 05:00:29 +000020bool 'gunzip' CONFIG_GUNZIP
21bool 'gzip' CONFIG_GZIP
22bool 'rpm2cpio' CONFIG_RPM2CPIO
23bool 'tar' CONFIG_TAR
Matt Kraai3c2f27d2001-10-24 18:51:27 +000024if [ "$CONFIG_TAR" = "y" ] ; then
Eric Andersen71312132001-11-10 09:53:23 +000025 bool ' Enable archive creation' CONFIG_FEATURE_TAR_CREATE
26 bool ' Enable -X and --exclude options (exclude files)' CONFIG_FEATURE_TAR_EXCLUDE
Glenn L McGrath1d23f3a2002-08-13 05:06:43 +000027 bool ' Enable -z option' CONFIG_FEATURE_TAR_GZIP
28 bool ' Enable support for old tar header format' CONFIG_FEATURE_TAR_OLD_FORMAT
Glenn L McGrathb3c4e9a2002-09-15 16:54:49 +000029 bool ' Enable support for GNU long filenames' CONFIG_FEATURE_GNUTAR_LONG_FILENAME
Matt Kraai3c2f27d2001-10-24 18:51:27 +000030fi
Eric Andersen114de552002-04-13 08:43:01 +000031if [ "$CONFIG_CPIO" = "y" -o "$CONFIG_TAR" = "y" ] ; then
32 bool ' Enable tape drive support' CONFIG_FEATURE_UNARCHIVE_TAPE
33fi
Glenn L McGrath87ac7022002-01-02 13:52:26 +000034bool 'unzip' CONFIG_UNZIP
Eric Andersenbdfd0d72001-10-24 05:00:29 +000035endmenu