blob: 0a7edf84c28fbd63b26e1e1febc6ecfa3a76539d [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 DESKTOP
Bernhard Reutner-Fischer68532b32006-11-17 12:47:50 +000017 bool "Enable options for full-blown desktop systems"
Denis Vlasenko97a8dd32006-10-01 15:55:11 +000018 default n
19 help
20 Enable options and features which are not essential.
21 Select this only if you plan to use busybox on full-blown
Bernhard Reutner-Fischer68532b32006-11-17 12:47:50 +000022 desktop machine with common Linux distro, not on an embedded box.
Denis Vlasenko97a8dd32006-10-01 15:55:11 +000023
Eric Andersenc9f20d92002-12-05 08:41:41 +000024choice
25 prompt "Buffer allocation policy"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000026 default FEATURE_BUFFERS_USE_MALLOC
Eric Andersenc9f20d92002-12-05 08:41:41 +000027 help
Eric Andersen53601822002-12-05 21:12:42 +000028 There are 3 ways BusyBox can handle buffer allocations:
29 - Use malloc. This costs code size for the call to xmalloc.
30 - Put them on stack. For some very small machines with limited stack
31 space, this can be deadly. For most folks, this works just fine.
32 - Put them in BSS. This works beautifully for computers with a real
33 MMU (and OS support), but wastes runtime RAM for uCLinux. This
34 behavior was the only one available for BusyBox versions 0.48 and
35 earlier.
Eric Andersenc9f20d92002-12-05 08:41:41 +000036
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000037config FEATURE_BUFFERS_USE_MALLOC
Eric Andersenc9f20d92002-12-05 08:41:41 +000038 bool "Allocate with Malloc"
39
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000040config FEATURE_BUFFERS_GO_ON_STACK
Eric Andersenc9f20d92002-12-05 08:41:41 +000041 bool "Allocate on the Stack"
42
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000043config FEATURE_BUFFERS_GO_IN_BSS
Eric Andersenc9f20d92002-12-05 08:41:41 +000044 bool "Allocate in the .bss section"
45
46endchoice
47
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000048config SHOW_USAGE
Bernhard Reutner-Fischer81901a02006-03-31 18:43:55 +000049 bool "Show terse applet usage messages"
50 default y
51 help
52 All BusyBox applets will show help messages when invoked with
53 wrong arguments. You can turn off printing these terse usage
54 messages if you say no here.
55 This will save you up to 7k.
56
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000057config FEATURE_VERBOSE_USAGE
Eric Andersenc9f20d92002-12-05 08:41:41 +000058 bool "Show verbose applet usage messages"
59 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000060 select SHOW_USAGE
Eric Andersenc9f20d92002-12-05 08:41:41 +000061 help
Eric Andersen53601822002-12-05 21:12:42 +000062 All BusyBox applets will show more verbose help messages when
Eric Andersen88c916b2003-10-22 09:58:56 +000063 busybox is invoked with --help. This will add a lot of text to the
Eric Andersen53601822002-12-05 21:12:42 +000064 busybox binary. In the default configuration, this will add about
65 13k, but it can add much more depending on your configuration.
Eric Andersenc9f20d92002-12-05 08:41:41 +000066
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000067config FEATURE_COMPRESS_USAGE
Rob Landley7e21d5f2006-04-27 23:34:46 +000068 bool "Store applet usage messages in compressed form"
69 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000070 depends on SHOW_USAGE
Rob Landley7e21d5f2006-04-27 23:34:46 +000071 help
72 Store usage messages in compressed form, uncompress them on-the-fly
73 when <applet> --help is called.
74
Rob Landleyc7ddefc2006-06-14 01:24:33 +000075 If you have a really tiny busybox with few applets enabled (and
76 bunzip2 isn't one of them), the overhead of the decompressor might
77 be noticeable. Also, if you run executables directly from ROM
78 and have very little memory, this might not be a win. Otherwise,
79 you probably want this.
80
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000081config FEATURE_INSTALLER
Eric Andersenc9f20d92002-12-05 08:41:41 +000082 bool "Support --install [-s] to install applet links at runtime"
83 default n
84 help
Eric Andersen53601822002-12-05 21:12:42 +000085 Enable 'busybox --install [-s]' support. This will allow you to use
86 busybox at runtime to create hard links or symlinks for all the
Denis Vlasenkoa7825f22007-06-16 13:56:51 +000087 applets that are compiled into busybox.
Eric Andersenc9f20d92002-12-05 08:41:41 +000088
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000089config LOCALE_SUPPORT
Eric Andersenc9f20d92002-12-05 08:41:41 +000090 bool "Enable locale support (system needs locale for this to work)"
91 default n
92 help
Eric Andersen88c916b2003-10-22 09:58:56 +000093 Enable this if your system has locale support and you would like
Eric Andersen53601822002-12-05 21:12:42 +000094 busybox to support locale settings.
Eric Andersenc9f20d92002-12-05 08:41:41 +000095
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000096config GETOPT_LONG
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +000097 bool "Support for --long-options"
Bernhard Reutner-Fischer74704192006-06-16 14:03:23 +000098 default y
Denis Vlasenkoc61852a2006-11-29 11:09:43 +000099 help
100 Enable this if you want busybox applets to use the gnu --long-option
101 style, in addition to single character -a -b -c style options.
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000102
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000103config FEATURE_DEVPTS
Eric Andersenc9f20d92002-12-05 08:41:41 +0000104 bool "Use the devpts filesystem for Unix98 PTYs"
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000105 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000106 help
Eric Andersen53601822002-12-05 21:12:42 +0000107 Enable if you want BusyBox to use Unix98 PTY support. If enabled,
108 busybox will use /dev/ptmx for the master side of the pseudoterminal
109 and /dev/pts/<number> for the slave side. Otherwise, BSD style
110 /dev/ttyp<number> will be used. To use this option, you should have
Rob Landleyd5b9b602006-05-31 23:23:42 +0000111 devpts mounted.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000112
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000113config FEATURE_CLEAN_UP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000114 bool "Clean up all memory before exiting (usually not needed)"
115 default n
116 help
Rob Landley1ab4c3d2006-02-08 18:50:17 +0000117 As a size optimization, busybox normally exits without explicitly
118 freeing dynamically allocated memory or closing files. This saves
119 space since the OS will clean up for us, but it can confuse debuggers
120 like valgrind, which report tons of memory and resource leaks.
121
122 Don't enable this unless you have a really good reason to clean
Eric Andersene5642112003-07-14 19:37:08 +0000123 things up manually.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000124
Denis Vlasenko10457b92007-03-27 22:01:31 +0000125config FEATURE_PIDFILE
126 bool "Support writing pidfiles"
127 default n
128 help
Denis Vlasenkobb23c062007-08-15 20:05:37 +0000129 This option makes some applets (e.g. crond, syslogd, inetd) write
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000130 a pidfile in /var/run. Some applications rely on them.
Denis Vlasenko10457b92007-03-27 22:01:31 +0000131
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000132config FEATURE_SUID
Eric Andersenc9f20d92002-12-05 08:41:41 +0000133 bool "Support for SUID/SGID handling"
134 default n
135 help
Rob Landleyd5b9b602006-05-31 23:23:42 +0000136 With this option you can install the busybox binary belonging
137 to root with the suid bit set, and it'll and it'll automatically drop
138 priviledges for applets that don't need root access.
139
140 If you're really paranoid and don't want to do this, build two
141 busybox binaries with different applets in them (and the appropriate
142 symlinks pointing to each binary), and only set the suid bit on the
143 one that needs it. The applets currently marked to need the suid bit
144 are login, passwd, su, ping, traceroute, crontab, dnsd, ipcrm, ipcs,
145 and vlock.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000146
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000147config FEATURE_SUID_CONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000148 bool "Runtime SUID/SGID configuration via /etc/busybox.conf"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000149 default n if FEATURE_SUID
150 depends on FEATURE_SUID
Eric Andersenc9f20d92002-12-05 08:41:41 +0000151 help
Rob Landleyd5b9b602006-05-31 23:23:42 +0000152 Allow the SUID / SGID state of an applet to be determined at runtime
153 by checking /etc/busybox.conf. (This is sort of a poor man's sudo.)
154 The format of this file is as follows:
Eric Andersene5272072003-07-22 22:15:21 +0000155
156 <applet> = [Ssx-][Ssx-][x-] (<username>|<uid>).(<groupname>|<gid>)
Eric Andersen5043ea12005-06-23 19:15:40 +0000157
Eric Andersene5272072003-07-22 22:15:21 +0000158 An example might help:
159
160 [SUID]
161 su = ssx root.0 # applet su can be run by anyone and runs with euid=0/egid=0
162 su = ssx # exactly the same
163
164 mount = sx- root.disk # applet mount can be run by root and members of group disk
165 # and runs with euid=0
166
167 cp = --- # disable applet cp for everyone
168
Rob Landleyfdc4c202005-04-29 19:48:29 +0000169 The file has to be owned by user root, group root and has to be
170 writeable only by root:
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000171 (chown 0.0 /etc/busybox.conf; chmod 600 /etc/busybox.conf)
Rob Landleyfdc4c202005-04-29 19:48:29 +0000172 The busybox executable has to be owned by user root, group
173 root and has to be setuid root for this to work:
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000174 (chown 0.0 /bin/busybox; chmod 4755 /bin/busybox)
Rob Landleyfdc4c202005-04-29 19:48:29 +0000175
Eric Andersene5272072003-07-22 22:15:21 +0000176 Robert 'sandman' Griebl has more information here:
177 <url: http://www.softforge.de/bb/suid.html >.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000178
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000179config FEATURE_SUID_CONFIG_QUIET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000180 bool "Suppress warning message if /etc/busybox.conf is not readable"
Rob Landleyd5b9b602006-05-31 23:23:42 +0000181 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000182 depends on FEATURE_SUID_CONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000183 help
Eric Andersene5272072003-07-22 22:15:21 +0000184 /etc/busybox.conf should be readable by the user needing the SUID, check
185 this option to avoid users to be notified about missing permissions.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000186
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000187config SELINUX
Eric Andersen9e480452003-07-03 10:07:04 +0000188 bool "Support NSA Security Enhanced Linux"
189 default n
190 help
Rob Landley24b0a952006-03-29 15:35:23 +0000191 Enable support for SELinux in applets ls, ps, and id. Also provide
192 the option of compiling in SELinux applets.
Eric Andersen9e480452003-07-03 10:07:04 +0000193
Rob Landley24b0a952006-03-29 15:35:23 +0000194 If you do not have a complete SELinux userland installed, this stuff
195 will not compile. Go visit
Eric Andersen31d898f2004-02-05 00:18:26 +0000196 http://www.nsa.gov/selinux/index.html
Rob Landley24b0a952006-03-29 15:35:23 +0000197 to download the necessary stuff to allow busybox to compile with
198 this option enabled. Specifially, libselinux 1.28 or better is
199 directly required by busybox. If the installation is located in a
200 non-standard directory, provide it by invoking make as follows:
201 CFLAGS=-I<libselinux-include-path> \
202 LDFLAGS=-L<libselinux-lib-path> \
203 make
Eric Andersen31d898f2004-02-05 00:18:26 +0000204
205 Most people will leave this set to 'N'.
206
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000207config FEATURE_PREFER_APPLETS
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000208 bool "exec prefers applets"
209 default n
210 help
211 This is an experimental option which directs applets about to
212 call 'exec' to try and find an applicable busybox applet before
Denis Vlasenko92c0b822007-05-08 17:27:17 +0000213 searching the PATH. This is typically done by exec'ing
214 /proc/self/exe.
215 This may affect shell, find -exec, xargs and similar applets.
216 They will use applets even if /bin/<applet> -> busybox link
217 is missing (or is not a link to busybox). However, this causes
218 problems in chroot jails without mounted /proc and with ps/top
219 (command name can be shown as 'exe' for applets started this way).
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000220
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000221config BUSYBOX_EXEC_PATH
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000222 string "Path to BusyBox executable"
223 default "/proc/self/exe"
224 help
225 When Busybox applets need to run other busybox applets, BusyBox
226 sometimes needs to exec() itself. When the /proc filesystem is
227 mounted, /proc/self/exe always points to the currently running
228 executable. If you haven't got /proc, set this to wherever you
229 want to run BusyBox from.
230
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000231# These are auto-selected by other options
232
233config FEATURE_SYSLOG
234 bool "Support for logging to syslog"
235 default n
236 help
237 This option is auto-selected when you select any applet which may
238 send its output to syslog. You do not need to select it manually.
239
240config FEATURE_HAVE_RPC
241 bool "RPC support"
242 default n
243 help
244 This is automatically selected if any of enabled applets need it.
245 You do not need to select it manually.
246
Eric Andersenc9f20d92002-12-05 08:41:41 +0000247endmenu
248
249menu 'Build Options'
250
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000251config STATIC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000252 bool "Build BusyBox as a static binary (no shared libs)"
253 default n
254 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000255 If you want to build a static BusyBox binary, which does not
256 use or require any shared libraries, then enable this option.
Eric Andersen88c916b2003-10-22 09:58:56 +0000257 This can cause BusyBox to be considerably larger, so you should
Eric Andersene5272072003-07-22 22:15:21 +0000258 leave this option false unless you have a good reason (i.e.
259 your target platform does not support shared libraries, or
260 you are building an initrd which doesn't need anything but
261 BusyBox, etc).
Eric Andersenc9f20d92002-12-05 08:41:41 +0000262
Eric Andersene5272072003-07-22 22:15:21 +0000263 Most people will leave this set to 'N'.
264
Denis Vlasenko1da86d22008-06-04 11:28:24 +0000265config PIE
266 bool "Build BusyBox as a position independent executable"
267 default n
268 depends on !STATIC
269 help
270 (TODO: what is it and why/when is it useful?)
271 Most people will leave this set to 'N'.
272
Denis Vlasenkod2c450c2008-01-08 20:32:12 +0000273config NOMMU
274 bool "Force NOMMU build"
275 default n
276 help
277 Busybox tries to detect whether architecture it is being
278 built against supports MMU or not. If this detection fails,
279 or if you want to build NOMMU version of busybox for testing,
280 you may force NOMMU build here.
281
282 Most people will leave this set to 'N'.
283
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000284config BUILD_LIBBUSYBOX
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000285 bool "Build shared libbusybox"
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000286 default n
Denis Vlasenkod62fd842007-10-07 20:46:34 +0000287 depends on !FEATURE_PREFER_APPLETS
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000288 help
Denis Vlasenkod62fd842007-10-07 20:46:34 +0000289 Build a shared library libbusybox.so.N.N.N which contains all
290 busybox code.
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000291
Denis Vlasenkod62fd842007-10-07 20:46:34 +0000292 This feature allows every applet to be built as a tiny
293 separate executable. Enabling it for "one big busybox binary"
294 approach serves no purpose and increases code size.
295 You should almost certainly say "no" to this.
Rob Landleyd6e50832006-06-15 15:04:53 +0000296
Denis Vlasenkodef88982007-10-07 17:06:01 +0000297### config FEATURE_FULL_LIBBUSYBOX
298### bool "Feature-complete libbusybox"
299### default n if !FEATURE_SHARED_BUSYBOX
300### depends on BUILD_LIBBUSYBOX
301### help
302### Build a libbusybox with the complete feature-set, disregarding
303### the actually selected config.
304###
305### Normally, libbusybox will only contain the features which are
306### used by busybox itself. If you plan to write a separate
307### standalone application which uses libbusybox say 'Y'.
308###
309### Note: libbusybox is GPL, not LGPL, and exports no stable API that
310### might act as a copyright barrier. We can and will modify the
311### exported function set between releases (even minor version number
312### changes), and happily break out-of-tree features.
313###
314### Say 'N' if in doubt.
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000315
Denis Vlasenkof545be02007-10-07 17:06:26 +0000316config FEATURE_INDIVIDUAL
317 bool "Produce a binary for each applet, linked against libbusybox"
318 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000319 depends on !STATIC && BUILD_LIBBUSYBOX
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000320 help
Denis Vlasenkof545be02007-10-07 17:06:26 +0000321 If your CPU architecture doesn't allow for sharing text/rodata
322 sections of running binaries, but allows for runtime dynamic
323 libraries, this option will allow you to reduce memory footprint
324 when you have many different applets running at once.
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000325
Denis Vlasenkof545be02007-10-07 17:06:26 +0000326 If your CPU architecture allows for sharing text/rodata,
327 having single binary is more optimal.
328
329 Each applet will be a tiny program, dynamically linked
330 against libbusybox.so.N.N.N.
331
332 You need to have a working dynamic linker.
333
334config FEATURE_SHARED_BUSYBOX
335 bool "Produce additional busybox binary linked against libbusybox"
336 default y
337 depends on !STATIC && BUILD_LIBBUSYBOX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000338 help
Denis Vlasenkof545be02007-10-07 17:06:26 +0000339 Build busybox, dynamically linked against libbusybox.so.N.N.N.
340
341 You need to have a working dynamic linker.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000342
Denis Vlasenkodef88982007-10-07 17:06:01 +0000343### config BUILD_AT_ONCE
344### bool "Compile all sources at once"
345### default n
346### help
347### Normally each source-file is compiled with one invocation of
348### the compiler.
349### If you set this option, all sources are compiled at once.
350### This gives the compiler more opportunities to optimize which can
351### result in smaller and/or faster binaries.
352###
353### Setting this option will consume alot of memory, e.g. if you
354### enable all applets with all features, gcc uses more than 300MB
355### RAM during compilation of busybox.
356###
357### This option is most likely only beneficial for newer compilers
358### such as gcc-4.1 and above.
359###
360### Say 'N' unless you know what you are doing.
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000361
Denis Vlasenkof545be02007-10-07 17:06:26 +0000362config LFS
363 bool "Build with Large File Support (for accessing files > 2 GB)"
364 default n
365 select FDISK_SUPPORT_LARGE_DISKS
366 help
367 If you want to build BusyBox with large file support, then enable
368 this option. This will have no effect if your kernel or your C
369 library lacks large file support for large files. Some of the
370 programs that can benefit from large file support include dd, gzip,
371 cp, mount, tar, and many others. If you want to access files larger
372 than 2 Gigabytes, enable this option. Otherwise, leave it set to 'N'.
373
Denis Vlasenkob8e653b2008-06-02 04:51:29 +0000374config CROSS_COMPILER_PREFIX
375 string "Cross Compiler prefix"
376 default ""
377 help
378 If you want to build BusyBox with a cross compiler, then you
379 will need to set this to the cross-compiler prefix, for example,
380 "i386-uclibc-". Note that CROSS_COMPILE environment variable
381 or "make CROSS_COMPILE=xxx ..." will override this selection.
382 For native build leave it empty.
383
Eric Andersenc9f20d92002-12-05 08:41:41 +0000384endmenu
385
Eric Andersenc9f20d92002-12-05 08:41:41 +0000386menu 'Debugging Options'
387
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000388config DEBUG
Rob Landleyc503df52006-05-09 22:08:56 +0000389 bool "Build BusyBox with extra Debugging symbols"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000390 default n
391 help
Rob Landleyc503df52006-05-09 22:08:56 +0000392 Say Y here if you wish to examine BusyBox internals while applets are
393 running. This increases the size of the binary considerably, and
394 should only be used when doing development. If you are doing
395 development and want to debug BusyBox, answer Y.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000396
Eric Andersenf086ed82004-05-25 11:30:22 +0000397 Most people should answer N.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000398
Denis Vlasenkobd8390a2008-06-12 20:23:03 +0000399config DEBUG_PESSIMIZE
400 bool "Disable compiler optimizations."
401 default n
402 depends on DEBUG
403 help
404 The compiler's optimization of source code can eliminate and reorder
405 code, resulting in an executable that's hard to understand when
406 stepping through it with a debugger. This switches it off, resulting
407 in a much bigger executable that more closely matches the source
408 code.
409
Denis Vlasenkoe0eebc12007-01-27 13:44:53 +0000410config WERROR
411 bool "Abort compilation on any warning"
Rob Landleyc503df52006-05-09 22:08:56 +0000412 default n
Rob Landleyc503df52006-05-09 22:08:56 +0000413 help
Denis Vlasenkoe0eebc12007-01-27 13:44:53 +0000414 Selecting this will add -Werror to gcc command line.
415
416 Most people should answer N.
417
Eric Andersenf086ed82004-05-25 11:30:22 +0000418choice
419 prompt "Additional debugging library"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000420 default NO_DEBUG_LIB
Eric Andersenc9f20d92002-12-05 08:41:41 +0000421 help
Eric Andersenf086ed82004-05-25 11:30:22 +0000422 Using an additional debugging library will make BusyBox become
423 considerable larger and will cause it to run more slowly. You
424 should always leave this option disabled for production use.
425
426 dmalloc support:
427 ----------------
Eric Andersenc9f20d92002-12-05 08:41:41 +0000428 This enables compiling with dmalloc ( http://dmalloc.com/ )
429 which is an excellent public domain mem leak and malloc problem
430 detector. To enable dmalloc, before running busybox you will
431 want to properly set your environment, for example:
432 export DMALLOC_OPTIONS=debug=0x34f47d83,inter=100,log=logfile
433 The 'debug=' value is generated using the following command
434 dmalloc -p log-stats -p log-non-free -p log-bad-space -p log-elapsed-time \
435 -p check-fence -p check-heap -p check-lists -p check-blank \
436 -p check-funcs -p realloc-copy -p allow-free-null
437
Eric Andersenf086ed82004-05-25 11:30:22 +0000438 Electric-fence support:
439 -----------------------
Eric Andersenc9f20d92002-12-05 08:41:41 +0000440 This enables compiling with Electric-fence support. Electric
Eric Andersen88c916b2003-10-22 09:58:56 +0000441 fence is another very useful malloc debugging library which uses
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000442 your computer's virtual memory hardware to detect illegal memory
443 accesses. This support will make BusyBox be considerable larger
444 and run slower, so you should leave this option disabled unless
Eric Andersenc9f20d92002-12-05 08:41:41 +0000445 you are hunting a hard to find memory problem.
446
Eric Andersenf086ed82004-05-25 11:30:22 +0000447
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000448config NO_DEBUG_LIB
Eric Andersenf086ed82004-05-25 11:30:22 +0000449 bool "None"
450
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000451config DMALLOC
Eric Andersenf086ed82004-05-25 11:30:22 +0000452 bool "Dmalloc"
453
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000454config EFENCE
Eric Andersenf086ed82004-05-25 11:30:22 +0000455 bool "Electric-fence"
456
457endchoice
458
Denis Vlasenko08492072006-12-22 13:56:36 +0000459config INCLUDE_SUSv2
460 bool "Enable obsolete features removed before SUSv3?"
Rob Landleyf8fd4db2006-01-30 01:30:39 +0000461 default y
462 help
Denis Vlasenko08492072006-12-22 13:56:36 +0000463 This option will enable backwards compatibility with SuSv2,
Rob Landleyf8fd4db2006-01-30 01:30:39 +0000464 specifically, old-style numeric options ('command -1 <file>')
Denis Vlasenko08492072006-12-22 13:56:36 +0000465 will be supported in head, tail, and fold. (Note: should
466 affect renice too.)
Eric Andersenf086ed82004-05-25 11:30:22 +0000467
Eric Andersenc9f20d92002-12-05 08:41:41 +0000468endmenu
Mike Frysinger72d59db2006-03-10 23:17:17 +0000469
470menu 'Installation Options'
471
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000472config INSTALL_NO_USR
Mike Frysinger72d59db2006-03-10 23:17:17 +0000473 bool "Don't use /usr"
474 default n
475 help
476 Disable use of /usr. Don't activate this option if you don't know
477 that you really want this behaviour.
478
479choice
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000480 prompt "Applets links"
481 default INSTALL_APPLET_SYMLINKS
482 help
483 Choose how you install applets links.
Mike Frysinger72d59db2006-03-10 23:17:17 +0000484
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000485config INSTALL_APPLET_SYMLINKS
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000486 bool "as soft-links"
487 help
488 Install applets as soft-links to the busybox binary. This needs some
489 free inodes on the filesystem, but might help with filesystem
490 generators that can't cope with hard-links.
Mike Frysinger72d59db2006-03-10 23:17:17 +0000491
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000492config INSTALL_APPLET_HARDLINKS
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000493 bool "as hard-links"
494 help
495 Install applets as hard-links to the busybox binary. This might count
496 on a filesystem with few inodes.
Mike Frysinger72d59db2006-03-10 23:17:17 +0000497
Denis Vlasenko737d1312007-08-25 18:25:24 +0000498config INSTALL_APPLET_SCRIPT_WRAPPERS
499 bool "as script wrappers"
500 help
501 Install applets as script wrappers that call the busybox binary.
502
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000503config INSTALL_APPLET_DONT
Mike Frysinger6cda8972007-01-24 09:32:42 +0000504 bool "not installed"
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000505 depends on FEATURE_INSTALLER || FEATURE_SH_STANDALONE || FEATURE_PREFER_APPLETS
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000506 help
507 Do not install applet links. Useful when using the -install feature
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000508 or a standalone shell for rescue purposes.
Mike Frysinger72d59db2006-03-10 23:17:17 +0000509
510endchoice
511
Denis Vlasenko737d1312007-08-25 18:25:24 +0000512choice
513 prompt "/bin/sh applet link"
514 default INSTALL_SH_APPLET_SYMLINK
515 depends on INSTALL_APPLET_SCRIPT_WRAPPERS
516 help
517 Choose how you install /bin/sh applet link.
518
519config INSTALL_SH_APPLET_SYMLINK
520 bool "as soft-link"
521 help
522 Install /bin/sh applet as soft-link to the busybox binary.
523
524config INSTALL_SH_APPLET_HARDLINK
525 bool "as hard-link"
526 help
527 Install /bin/sh applet as hard-link to the busybox binary.
528
529config INSTALL_SH_APPLET_SCRIPT_WRAPPER
530 bool "as script wrapper"
531 help
532 Install /bin/sh applet as script wrapper that call the busybox binary.
533
534endchoice
535
Mike Frysinger72d59db2006-03-10 23:17:17 +0000536config PREFIX
537 string "BusyBox installation prefix"
538 default "./_install"
539 help
540 Define your directory to install BusyBox files/subdirs in.
541
542endmenu
543
544source libbb/Config.in
545
Rob Landley9dc69132006-03-13 02:52:23 +0000546endmenu
547
Mike Frysinger72d59db2006-03-10 23:17:17 +0000548comment "Applets"
549
550source archival/Config.in
551source coreutils/Config.in
552source console-tools/Config.in
553source debianutils/Config.in
554source editors/Config.in
555source findutils/Config.in
556source init/Config.in
557source loginutils/Config.in
558source e2fsprogs/Config.in
559source modutils/Config.in
560source util-linux/Config.in
561source miscutils/Config.in
562source networking/Config.in
563source procps/Config.in
564source shell/Config.in
565source sysklogd/Config.in
Denis Vlasenkofe544582006-10-03 15:57:40 +0000566source runit/Config.in
Denis Vlasenkod46d3c22007-02-06 19:28:50 +0000567source selinux/Config.in
Denis Vlasenko68444b92008-02-22 22:24:48 +0000568source printutils/Config.in