aboutsummaryrefslogtreecommitdiff
path: root/archival/Config.in
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-12-05 08:41:41 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-12-05 08:41:41 +0000
commite40a650628ce6b03e67c4c6d96ea396e7bd2afb3 (patch)
tree72904548bb54dcaf78017d3b35296765437e0bd5 /archival/Config.in
parent49ec1a2dc6dfba670b3659286524fd5baf12e6fe (diff)
downloadbusybox-w32-e40a650628ce6b03e67c4c6d96ea396e7bd2afb3.tar.gz
busybox-w32-e40a650628ce6b03e67c4c6d96ea396e7bd2afb3.tar.bz2
busybox-w32-e40a650628ce6b03e67c4c6d96ea396e7bd2afb3.zip
Yet another major rework of the BusyBox config system, using the considerably
modified Kbuild system I put into uClibc. With this, there should be no more need to modify Rules.mak since I've moved all the interesting options into the config system. I think I've got everything updated, but you never know, I may have made some mistakes, so watch closely. -Erik git-svn-id: svn://busybox.net/trunk/busybox@6102 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'archival/Config.in')
-rw-r--r--archival/Config.in158
1 files changed, 158 insertions, 0 deletions
diff --git a/archival/Config.in b/archival/Config.in
new file mode 100644
index 000000000..ecef07f7c
--- /dev/null
+++ b/archival/Config.in
@@ -0,0 +1,158 @@
1#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Archival Utilities"
7
8config CONFIG_AR
9 bool "ar"
10 default n
11 help
12 Please submit a patch to add help text for this item.
13
14config CONFIG_FEATURE_AR_LONG_FILENAMES
15 bool " Enable support for long filenames (not need for debs)"
16 default n
17 depends on CONFIG_AR
18 help
19 Please submit a patch to add help text for this item.
20
21config CONFIG_BUNZIP2
22 bool "bunzip2"
23 default n
24 help
25 Please submit a patch to add help text for this item.
26
27config CONFIG_CPIO
28 bool "cpio"
29 default n
30 help
31 Please submit a patch to add help text for this item.
32
33config CONFIG_DPKG
34 bool "dpkg"
35 default n
36 help
37 Please submit a patch to add help text for this item.
38
39config CONFIG_DPKG_DEB
40 bool "dpkg_deb"
41 default n
42 help
43 Please submit a patch to add help text for this item.
44
45config CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY
46 bool " extract only (-x)"
47 default n
48 depends on CONFIG_DPKG_DEB
49 help
50 Please submit a patch to add help text for this item.
51
52config CONFIG_FEATURE_DEB_TAR_GZ
53 bool " gzip debian packages (normal)"
54 default y if CONFIG_DPKG || CONFIG_DPKG_DEB
55 depends on CONFIG_DPKG || CONFIG_DPKG_DEB
56 help
57 Please submit a patch to add help text for this item.
58
59config CONFIG_FEATURE_DEB_TAR_BZ2
60 bool " bzip2 debian packages"
61 default n
62 depends on CONFIG_DPKG || CONFIG_DPKG_DEB
63 help
64 Please submit a patch to add help text for this item.
65
66config CONFIG_GUNZIP
67 bool "gunzip"
68 default n
69 help
70 Please submit a patch to add help text for this item.
71
72config CONFIG_FEATURE_GUNZIP_UNCOMPRESS
73 bool " Uncompress support"
74 default n
75 depends on CONFIG_GUNZIP
76 help
77 Please submit a patch to add help text for this item.
78
79config CONFIG_GZIP
80 bool "gzip"
81 default n
82 help
83 Please submit a patch to add help text for this item.
84
85config CONFIG_RPM2CPIO
86 bool "rpm2cpio"
87 default n
88 help
89 Please submit a patch to add help text for this item.
90
91config CONFIG_TAR
92 bool "tar"
93 default n
94 help
95 Please submit a patch to add help text for this item.
96
97config CONFIG_FEATURE_TAR_CREATE
98 bool " Enable archive creation"
99 default y
100 depends on CONFIG_TAR
101 help
102 Please submit a patch to add help text for this item.
103
104config CONFIG_FEATURE_TAR_BZIP2
105 bool " Enable -j option to handle .tar.bz2 files"
106 default n
107 depends on CONFIG_TAR
108 help
109 Please submit a patch to add help text for this item.
110
111config CONFIG_FEATURE_TAR_EXCLUDE
112 bool " Enable -X and --exclude options (exclude files)"
113 default n
114 depends on CONFIG_TAR
115 help
116 Please submit a patch to add help text for this item.
117
118config CONFIG_FEATURE_TAR_GZIP
119 bool " Enable -z option"
120 default y
121 depends on CONFIG_TAR
122 help
123 Please submit a patch to add help text for this item.
124
125config CONFIG_FEATURE_TAR_OLD_FORMAT
126 bool " Enable support for old tar header format"
127 default n
128 depends on CONFIG_TAR
129 help
130 Please submit a patch to add help text for this item.
131
132config CONFIG_FEATURE_GNUTAR_LONG_FILENAME
133 bool " Enable support for GNU long filenames"
134 default y
135 depends on CONFIG_TAR
136 help
137 Please submit a patch to add help text for this item.
138
139config CONFIG_FEATURE_UNARCHIVE_TAPE
140 bool " Enable tape drive support"
141 default n
142 depends on CONFIG_TAR || CONFIG_CPIO
143 help
144 Please submit a patch to add help text for this item.
145
146config CONFIG_UNCOMPRESS
147 bool "uncompress"
148 default n
149 help
150 Please submit a patch to add help text for this item.
151
152config CONFIG_UNZIP
153 bool "unzip"
154 default n
155 help
156 Please submit a patch to add help text for this item.
157
158endmenu