blob: 5e70a523a98e7229c2f6dd809b1b6b3e34b84b74 [file] [log] [blame]
Eric Andersenc9f20d92002-12-05 08:41:41 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6mainmenu "BusyBox Configuration"
7
Eric Andersen068b6b02002-12-13 22:53:28 +00008config HAVE_DOT_CONFIG
9 bool
10 default y
11
Rob Landley9dc69132006-03-13 02:52:23 +000012menu "Busybox Settings"
Mike Frysinger72d59db2006-03-10 23:17:17 +000013
Eric Andersen23b51462002-12-05 21:25:20 +000014menu "General Configuration"
15
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000016config NITPICK
Rob Landleyd5b9b602006-05-31 23:23:42 +000017 bool "See lots more (probably unnecessary) configuration options."
18 default n
19 help
20 Some BusyBox applets have more configuration options than anyone
21 will ever care about. To avoid drowining people in complexity, most
22 of the applet features that can be set to a sane default value are
23 hidden, unless you hit the above switch.
24
25 This is better than to telling people to edit the busybox source
26 code, but not by much.
27
28 See http://en.wikipedia.org/wiki/Fibber_McGee_and_Molly#The_Closet
29
30 You have been warned.
31
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000032config DESKTOP
Bernhard Reutner-Fischer68532b32006-11-17 12:47:50 +000033 bool "Enable options for full-blown desktop systems"
Denis Vlasenko97a8dd32006-10-01 15:55:11 +000034 default n
35 help
36 Enable options and features which are not essential.
37 Select this only if you plan to use busybox on full-blown
Bernhard Reutner-Fischer68532b32006-11-17 12:47:50 +000038 desktop machine with common Linux distro, not on an embedded box.
Denis Vlasenko97a8dd32006-10-01 15:55:11 +000039
Eric Andersenc9f20d92002-12-05 08:41:41 +000040choice
41 prompt "Buffer allocation policy"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000042 default FEATURE_BUFFERS_USE_MALLOC
43 depends on NITPICK
Eric Andersenc9f20d92002-12-05 08:41:41 +000044 help
Eric Andersen53601822002-12-05 21:12:42 +000045 There are 3 ways BusyBox can handle buffer allocations:
46 - Use malloc. This costs code size for the call to xmalloc.
47 - Put them on stack. For some very small machines with limited stack
48 space, this can be deadly. For most folks, this works just fine.
49 - Put them in BSS. This works beautifully for computers with a real
50 MMU (and OS support), but wastes runtime RAM for uCLinux. This
51 behavior was the only one available for BusyBox versions 0.48 and
52 earlier.
Eric Andersenc9f20d92002-12-05 08:41:41 +000053
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000054config FEATURE_BUFFERS_USE_MALLOC
Eric Andersenc9f20d92002-12-05 08:41:41 +000055 bool "Allocate with Malloc"
56
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000057config FEATURE_BUFFERS_GO_ON_STACK
Eric Andersenc9f20d92002-12-05 08:41:41 +000058 bool "Allocate on the Stack"
59
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000060config FEATURE_BUFFERS_GO_IN_BSS
Eric Andersenc9f20d92002-12-05 08:41:41 +000061 bool "Allocate in the .bss section"
62
63endchoice
64
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000065config SHOW_USAGE
Bernhard Reutner-Fischer81901a02006-03-31 18:43:55 +000066 bool "Show terse applet usage messages"
67 default y
68 help
69 All BusyBox applets will show help messages when invoked with
70 wrong arguments. You can turn off printing these terse usage
71 messages if you say no here.
72 This will save you up to 7k.
73
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000074config FEATURE_VERBOSE_USAGE
Eric Andersenc9f20d92002-12-05 08:41:41 +000075 bool "Show verbose applet usage messages"
76 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000077 select SHOW_USAGE
Eric Andersenc9f20d92002-12-05 08:41:41 +000078 help
Eric Andersen53601822002-12-05 21:12:42 +000079 All BusyBox applets will show more verbose help messages when
Eric Andersen88c916b2003-10-22 09:58:56 +000080 busybox is invoked with --help. This will add a lot of text to the
Eric Andersen53601822002-12-05 21:12:42 +000081 busybox binary. In the default configuration, this will add about
82 13k, but it can add much more depending on your configuration.
Eric Andersenc9f20d92002-12-05 08:41:41 +000083
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000084config FEATURE_COMPRESS_USAGE
Rob Landley7e21d5f2006-04-27 23:34:46 +000085 bool "Store applet usage messages in compressed form"
86 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000087 depends on SHOW_USAGE
Rob Landley7e21d5f2006-04-27 23:34:46 +000088 help
89 Store usage messages in compressed form, uncompress them on-the-fly
90 when <applet> --help is called.
91
Rob Landleyc7ddefc2006-06-14 01:24:33 +000092 If you have a really tiny busybox with few applets enabled (and
93 bunzip2 isn't one of them), the overhead of the decompressor might
94 be noticeable. Also, if you run executables directly from ROM
95 and have very little memory, this might not be a win. Otherwise,
96 you probably want this.
97
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000098config FEATURE_INSTALLER
Eric Andersenc9f20d92002-12-05 08:41:41 +000099 bool "Support --install [-s] to install applet links at runtime"
100 default n
101 help
Eric Andersen53601822002-12-05 21:12:42 +0000102 Enable 'busybox --install [-s]' support. This will allow you to use
103 busybox at runtime to create hard links or symlinks for all the
104 applets that are compiled into busybox. This feature requires the
105 /proc filesystem.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000106
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000107config LOCALE_SUPPORT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000108 bool "Enable locale support (system needs locale for this to work)"
109 default n
110 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000111 Enable this if your system has locale support and you would like
Eric Andersen53601822002-12-05 21:12:42 +0000112 busybox to support locale settings.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000113
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000114config GETOPT_LONG
Denis Vlasenkoc61852a2006-11-29 11:09:43 +0000115 bool "Enable support for --long-options"
Bernhard Reutner-Fischer74704192006-06-16 14:03:23 +0000116 default y
Denis Vlasenkoc61852a2006-11-29 11:09:43 +0000117 help
118 Enable this if you want busybox applets to use the gnu --long-option
119 style, in addition to single character -a -b -c style options.
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000120
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000121config FEATURE_DEVPTS
Eric Andersenc9f20d92002-12-05 08:41:41 +0000122 bool "Use the devpts filesystem for Unix98 PTYs"
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000123 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000124 help
Eric Andersen53601822002-12-05 21:12:42 +0000125 Enable if you want BusyBox to use Unix98 PTY support. If enabled,
126 busybox will use /dev/ptmx for the master side of the pseudoterminal
127 and /dev/pts/<number> for the slave side. Otherwise, BSD style
128 /dev/ttyp<number> will be used. To use this option, you should have
Rob Landleyd5b9b602006-05-31 23:23:42 +0000129 devpts mounted.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000130
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000131config FEATURE_CLEAN_UP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000132 bool "Clean up all memory before exiting (usually not needed)"
133 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000134 depends on NITPICK
Eric Andersenc9f20d92002-12-05 08:41:41 +0000135 help
Rob Landley1ab4c3d2006-02-08 18:50:17 +0000136 As a size optimization, busybox normally exits without explicitly
137 freeing dynamically allocated memory or closing files. This saves
138 space since the OS will clean up for us, but it can confuse debuggers
139 like valgrind, which report tons of memory and resource leaks.
140
141 Don't enable this unless you have a really good reason to clean
Eric Andersene5642112003-07-14 19:37:08 +0000142 things up manually.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000143
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000144config FEATURE_SUID
Eric Andersenc9f20d92002-12-05 08:41:41 +0000145 bool "Support for SUID/SGID handling"
146 default n
147 help
Rob Landleyd5b9b602006-05-31 23:23:42 +0000148 With this option you can install the busybox binary belonging
149 to root with the suid bit set, and it'll and it'll automatically drop
150 priviledges for applets that don't need root access.
151
152 If you're really paranoid and don't want to do this, build two
153 busybox binaries with different applets in them (and the appropriate
154 symlinks pointing to each binary), and only set the suid bit on the
155 one that needs it. The applets currently marked to need the suid bit
156 are login, passwd, su, ping, traceroute, crontab, dnsd, ipcrm, ipcs,
157 and vlock.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000158
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000159config FEATURE_SYSLOG
Denis Vlasenko049d6b82006-09-07 06:02:39 +0000160 bool "Support for syslog"
161 default n
162 help
163 This option is auto-selected when you select any applet which may
164 send its output to syslog. You do not need to select it manually.
165
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000166config FEATURE_SUID_CONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000167 bool "Runtime SUID/SGID configuration via /etc/busybox.conf"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000168 default n if FEATURE_SUID
169 depends on FEATURE_SUID
Eric Andersenc9f20d92002-12-05 08:41:41 +0000170 help
Rob Landleyd5b9b602006-05-31 23:23:42 +0000171 Allow the SUID / SGID state of an applet to be determined at runtime
172 by checking /etc/busybox.conf. (This is sort of a poor man's sudo.)
173 The format of this file is as follows:
Eric Andersene5272072003-07-22 22:15:21 +0000174
175 <applet> = [Ssx-][Ssx-][x-] (<username>|<uid>).(<groupname>|<gid>)
Eric Andersen5043ea12005-06-23 19:15:40 +0000176
Eric Andersene5272072003-07-22 22:15:21 +0000177 An example might help:
178
179 [SUID]
180 su = ssx root.0 # applet su can be run by anyone and runs with euid=0/egid=0
181 su = ssx # exactly the same
182
183 mount = sx- root.disk # applet mount can be run by root and members of group disk
184 # and runs with euid=0
185
186 cp = --- # disable applet cp for everyone
187
Rob Landleyfdc4c202005-04-29 19:48:29 +0000188 The file has to be owned by user root, group root and has to be
189 writeable only by root:
190 (chown 0.0 /etc/busybox.conf; chmod 600 /etc/busybox.conf)
191 The busybox executable has to be owned by user root, group
192 root and has to be setuid root for this to work:
193 (chown 0.0 /bin/busybox; chmod 4755 /bin/busybox)
194
Eric Andersene5272072003-07-22 22:15:21 +0000195 Robert 'sandman' Griebl has more information here:
196 <url: http://www.softforge.de/bb/suid.html >.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000197
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000198config FEATURE_SUID_CONFIG_QUIET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000199 bool "Suppress warning message if /etc/busybox.conf is not readable"
Rob Landleyd5b9b602006-05-31 23:23:42 +0000200 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000201 depends on FEATURE_SUID_CONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000202 help
Eric Andersene5272072003-07-22 22:15:21 +0000203 /etc/busybox.conf should be readable by the user needing the SUID, check
204 this option to avoid users to be notified about missing permissions.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000205
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000206config SELINUX
Eric Andersen9e480452003-07-03 10:07:04 +0000207 bool "Support NSA Security Enhanced Linux"
208 default n
209 help
Rob Landley24b0a952006-03-29 15:35:23 +0000210 Enable support for SELinux in applets ls, ps, and id. Also provide
211 the option of compiling in SELinux applets.
Eric Andersen9e480452003-07-03 10:07:04 +0000212
Rob Landley24b0a952006-03-29 15:35:23 +0000213 If you do not have a complete SELinux userland installed, this stuff
214 will not compile. Go visit
Eric Andersen31d898f2004-02-05 00:18:26 +0000215 http://www.nsa.gov/selinux/index.html
Rob Landley24b0a952006-03-29 15:35:23 +0000216 to download the necessary stuff to allow busybox to compile with
217 this option enabled. Specifially, libselinux 1.28 or better is
218 directly required by busybox. If the installation is located in a
219 non-standard directory, provide it by invoking make as follows:
220 CFLAGS=-I<libselinux-include-path> \
221 LDFLAGS=-L<libselinux-lib-path> \
222 make
Eric Andersen31d898f2004-02-05 00:18:26 +0000223
224 Most people will leave this set to 'N'.
225
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000226config BUSYBOX_EXEC_PATH
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000227 string "Path to BusyBox executable"
228 default "/proc/self/exe"
229 help
230 When Busybox applets need to run other busybox applets, BusyBox
231 sometimes needs to exec() itself. When the /proc filesystem is
232 mounted, /proc/self/exe always points to the currently running
233 executable. If you haven't got /proc, set this to wherever you
234 want to run BusyBox from.
235
Eric Andersenc9f20d92002-12-05 08:41:41 +0000236endmenu
237
238menu 'Build Options'
239
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000240config STATIC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000241 bool "Build BusyBox as a static binary (no shared libs)"
242 default n
243 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000244 If you want to build a static BusyBox binary, which does not
245 use or require any shared libraries, then enable this option.
Eric Andersen88c916b2003-10-22 09:58:56 +0000246 This can cause BusyBox to be considerably larger, so you should
Eric Andersene5272072003-07-22 22:15:21 +0000247 leave this option false unless you have a good reason (i.e.
248 your target platform does not support shared libraries, or
249 you are building an initrd which doesn't need anything but
250 BusyBox, etc).
Eric Andersenc9f20d92002-12-05 08:41:41 +0000251
Eric Andersene5272072003-07-22 22:15:21 +0000252 Most people will leave this set to 'N'.
253
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000254config BUILD_LIBBUSYBOX
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000255 bool "Build shared libbusybox"
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000256 default n
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000257 help
258 Build a shared library libbusybox.so which contains all
259 libraries used inside busybox.
260
Rob Landleyd6e50832006-06-15 15:04:53 +0000261 This is an experimental feature intended to support the upcoming
262 "make standalone" mode. Enabling it against the one big busybox
263 binary serves no purpose (and increases the size). You should
264 almost certainly say "no" to this right now.
265
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000266config FEATURE_FULL_LIBBUSYBOX
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000267 bool "Feature-complete libbusybox"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000268 default n if !FEATURE_SHARED_BUSYBOX
269 depends on BUILD_LIBBUSYBOX
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000270 help
271 Build a libbusybox with the complete feature-set, disregarding
272 the actually selected config.
273
274 Normally, libbusybox will only contain the features which are
275 used by busybox itself. If you plan to write a separate
276 standalone application which uses libbusybox say 'Y'.
277
Rob Landley9e275e32006-01-31 03:45:26 +0000278 Note: libbusybox is GPL, not LGPL, and exports no stable API that
279 might act as a copyright barrier. We can and will modify the
280 exported function set between releases (even minor version number
281 changes), and happily break out-of-tree features.
282
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000283 Say 'N' if in doubt.
284
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000285config FEATURE_SHARED_BUSYBOX
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000286 bool "Use shared libbusybox for busybox"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000287 default y if BUILD_LIBBUSYBOX
288 depends on !STATIC && BUILD_LIBBUSYBOX
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000289 help
290 Use libbusybox.so also for busybox itself.
291 You need to have a working dynamic linker to use this variant.
292
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000293config LFS
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000294 bool "Build with Large File Support (for accessing files > 2 GB)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000295 default n
Eric Andersenf086ed82004-05-25 11:30:22 +0000296 select FDISK_SUPPORT_LARGE_DISKS
Eric Andersenc9f20d92002-12-05 08:41:41 +0000297 help
298 If you want to build BusyBox with large file support, then enable
299 this option. This will have no effect if your kernel or your C
300 library lacks large file support for large files. Some of the
301 programs that can benefit from large file support include dd, gzip,
302 cp, mount, tar, and many others. If you want to access files larger
303 than 2 Gigabytes, enable this option. Otherwise, leave it set to 'N'.
304
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000305config BUILD_AT_ONCE
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000306 bool "Compile all sources at once"
307 default n
308 help
309 Normally each source-file is compiled with one invocation of
310 the compiler.
311 If you set this option, all sources are compiled at once.
312 This gives the compiler more opportunities to optimize which can
313 result in smaller and/or faster binaries.
314
315 Setting this option will consume alot of memory, e.g. if you
316 enable all applets with all features, gcc uses more than 300MB
317 RAM during compilation of busybox.
318
319 This option is most likely only beneficial for newer compilers
320 such as gcc-4.1 and above.
321
322 Say 'N' unless you know what you are doing.
323
Eric Andersenc9f20d92002-12-05 08:41:41 +0000324endmenu
325
Eric Andersenc9f20d92002-12-05 08:41:41 +0000326menu 'Debugging Options'
327
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000328config DEBUG
Rob Landleyc503df52006-05-09 22:08:56 +0000329 bool "Build BusyBox with extra Debugging symbols"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000330 default n
331 help
Rob Landleyc503df52006-05-09 22:08:56 +0000332 Say Y here if you wish to examine BusyBox internals while applets are
333 running. This increases the size of the binary considerably, and
334 should only be used when doing development. If you are doing
335 development and want to debug BusyBox, answer Y.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000336
Eric Andersenf086ed82004-05-25 11:30:22 +0000337 Most people should answer N.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000338
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000339config DEBUG_PESSIMIZE
Rob Landleyc503df52006-05-09 22:08:56 +0000340 bool "Disable compiler optimizations."
341 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000342 depends on DEBUG
Rob Landleyc503df52006-05-09 22:08:56 +0000343 help
344 The compiler's optimization of source code can eliminate and reorder
345 code, resulting in an executable that's hard to understand when
346 stepping through it with a debugger. This switches it off, resulting
347 in a much bigger executable that more closely matches the source
348 code.
349
Eric Andersenf086ed82004-05-25 11:30:22 +0000350choice
351 prompt "Additional debugging library"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000352 default NO_DEBUG_LIB
353 depends on DEBUG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000354 help
Eric Andersenf086ed82004-05-25 11:30:22 +0000355 Using an additional debugging library will make BusyBox become
356 considerable larger and will cause it to run more slowly. You
357 should always leave this option disabled for production use.
358
359 dmalloc support:
360 ----------------
Eric Andersenc9f20d92002-12-05 08:41:41 +0000361 This enables compiling with dmalloc ( http://dmalloc.com/ )
362 which is an excellent public domain mem leak and malloc problem
363 detector. To enable dmalloc, before running busybox you will
364 want to properly set your environment, for example:
365 export DMALLOC_OPTIONS=debug=0x34f47d83,inter=100,log=logfile
366 The 'debug=' value is generated using the following command
367 dmalloc -p log-stats -p log-non-free -p log-bad-space -p log-elapsed-time \
368 -p check-fence -p check-heap -p check-lists -p check-blank \
369 -p check-funcs -p realloc-copy -p allow-free-null
370
Eric Andersenf086ed82004-05-25 11:30:22 +0000371 Electric-fence support:
372 -----------------------
Eric Andersenc9f20d92002-12-05 08:41:41 +0000373 This enables compiling with Electric-fence support. Electric
Eric Andersen88c916b2003-10-22 09:58:56 +0000374 fence is another very useful malloc debugging library which uses
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000375 your computer's virtual memory hardware to detect illegal memory
376 accesses. This support will make BusyBox be considerable larger
377 and run slower, so you should leave this option disabled unless
Eric Andersenc9f20d92002-12-05 08:41:41 +0000378 you are hunting a hard to find memory problem.
379
Eric Andersenf086ed82004-05-25 11:30:22 +0000380
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000381config NO_DEBUG_LIB
Eric Andersenf086ed82004-05-25 11:30:22 +0000382 bool "None"
383
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000384config DMALLOC
Eric Andersenf086ed82004-05-25 11:30:22 +0000385 bool "Dmalloc"
386
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000387config EFENCE
Eric Andersenf086ed82004-05-25 11:30:22 +0000388 bool "Electric-fence"
389
390endchoice
391
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000392config DEBUG_YANK_SUSv2
Rob Landleyf8fd4db2006-01-30 01:30:39 +0000393 bool "Disable obsolete features removed before SUSv3?"
394 default y
395 help
Bernhard Reutner-Fischera1bccc02006-04-02 20:17:55 +0000396 This option will disable backwards compatibility with SuSv2,
Rob Landleyf8fd4db2006-01-30 01:30:39 +0000397 specifically, old-style numeric options ('command -1 <file>')
398 will not be supported in head, tail, and fold. (Note: should
399 yank from renice too.)
Eric Andersenf086ed82004-05-25 11:30:22 +0000400
Eric Andersenc9f20d92002-12-05 08:41:41 +0000401endmenu
Mike Frysinger72d59db2006-03-10 23:17:17 +0000402
403menu 'Installation Options'
404
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000405config INSTALL_NO_USR
Mike Frysinger72d59db2006-03-10 23:17:17 +0000406 bool "Don't use /usr"
407 default n
408 help
409 Disable use of /usr. Don't activate this option if you don't know
410 that you really want this behaviour.
411
412choice
413 prompt "Applets links"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000414 default INSTALL_APPLET_SYMLINKS
Mike Frysinger72d59db2006-03-10 23:17:17 +0000415 help
416 Choose how you install applets links.
417
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000418config INSTALL_APPLET_SYMLINKS
Mike Frysinger72d59db2006-03-10 23:17:17 +0000419 bool "as soft-links"
420 help
421 Install applets as soft-links to the busybox binary. This needs some
422 free inodes on the filesystem, but might help with filesystem
423 generators that can't cope with hard-links.
424
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000425config INSTALL_APPLET_HARDLINKS
Mike Frysinger72d59db2006-03-10 23:17:17 +0000426 bool "as hard-links"
427 help
428 Install applets as hard-links to the busybox binary. This might count
429 on a filesystem with few inodes.
430
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000431config INSTALL_APPLET_DONT
Mike Frysinger72d59db2006-03-10 23:17:17 +0000432 bool
433 prompt "not installed"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000434 depends on FEATURE_INSTALLER || FEATURE_SH_STANDALONE_SHELL
Mike Frysinger72d59db2006-03-10 23:17:17 +0000435 help
436 Do not install applets links. Usefull when using the -install feature
437 or a standalone shell for rescue pruposes.
438
439endchoice
440
441config PREFIX
442 string "BusyBox installation prefix"
443 default "./_install"
444 help
445 Define your directory to install BusyBox files/subdirs in.
446
447endmenu
448
449source libbb/Config.in
450
Rob Landley9dc69132006-03-13 02:52:23 +0000451endmenu
452
Mike Frysinger72d59db2006-03-10 23:17:17 +0000453comment "Applets"
454
455source archival/Config.in
456source coreutils/Config.in
457source console-tools/Config.in
458source debianutils/Config.in
459source editors/Config.in
460source findutils/Config.in
461source init/Config.in
462source loginutils/Config.in
463source e2fsprogs/Config.in
464source modutils/Config.in
465source util-linux/Config.in
466source miscutils/Config.in
467source networking/Config.in
468source procps/Config.in
469source shell/Config.in
470source sysklogd/Config.in
Denis Vlasenkofe544582006-10-03 15:57:40 +0000471source runit/Config.in