blob: f575e91ce8e71715b8e8cf7d7a637488681d863f [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
Denis Vlasenko3fd15e12008-08-09 16:15:14 +000024config EXTRA_COMPAT
25 bool "Provide compatible behavior for rare corner cases (bigger code)"
26 default n
27 help
28 This option makes grep, sed etc handle rare corner cases
29 (embedded NUL bytes and such). This makes code bigger and uses
30 some GNU extensions in libc. You probably only need this option
31 if you plan to run busybox on desktop.
32
Denis Vlasenkoc7497ea2008-06-13 11:16:09 +000033config FEATURE_ASSUME_UNICODE
34 bool "Assume that 1:1 char/glyph correspondence is not true"
35 default n
36 help
37 This makes various applets aware that one byte is not
38 one character on screen.
39
40 Busybox aims to eventually work correctly with Unicode displays.
41 Any older encodings are not guaranteed to work.
42 Probably by the time when busybox will be fully Unicode-clean,
43 other encodings will be mainly of historic interest.
44
Eric Andersenc9f20d92002-12-05 08:41:41 +000045choice
46 prompt "Buffer allocation policy"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000047 default FEATURE_BUFFERS_USE_MALLOC
Eric Andersenc9f20d92002-12-05 08:41:41 +000048 help
Eric Andersen53601822002-12-05 21:12:42 +000049 There are 3 ways BusyBox can handle buffer allocations:
50 - Use malloc. This costs code size for the call to xmalloc.
51 - Put them on stack. For some very small machines with limited stack
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +000052 space, this can be deadly. For most folks, this works just fine.
Eric Andersen53601822002-12-05 21:12:42 +000053 - Put them in BSS. This works beautifully for computers with a real
54 MMU (and OS support), but wastes runtime RAM for uCLinux. This
55 behavior was the only one available for BusyBox versions 0.48 and
56 earlier.
Eric Andersenc9f20d92002-12-05 08:41:41 +000057
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000058config FEATURE_BUFFERS_USE_MALLOC
Eric Andersenc9f20d92002-12-05 08:41:41 +000059 bool "Allocate with Malloc"
60
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000061config FEATURE_BUFFERS_GO_ON_STACK
Eric Andersenc9f20d92002-12-05 08:41:41 +000062 bool "Allocate on the Stack"
63
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000064config FEATURE_BUFFERS_GO_IN_BSS
Eric Andersenc9f20d92002-12-05 08:41:41 +000065 bool "Allocate in the .bss section"
66
67endchoice
68
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000069config SHOW_USAGE
Bernhard Reutner-Fischer81901a02006-03-31 18:43:55 +000070 bool "Show terse applet usage messages"
71 default y
72 help
73 All BusyBox applets will show help messages when invoked with
74 wrong arguments. You can turn off printing these terse usage
75 messages if you say no here.
76 This will save you up to 7k.
77
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000078config FEATURE_VERBOSE_USAGE
Eric Andersenc9f20d92002-12-05 08:41:41 +000079 bool "Show verbose applet usage messages"
80 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000081 select SHOW_USAGE
Eric Andersenc9f20d92002-12-05 08:41:41 +000082 help
Eric Andersen53601822002-12-05 21:12:42 +000083 All BusyBox applets will show more verbose help messages when
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +000084 busybox is invoked with --help. This will add a lot of text to the
85 busybox binary. In the default configuration, this will add about
Eric Andersen53601822002-12-05 21:12:42 +000086 13k, but it can add much more depending on your configuration.
Eric Andersenc9f20d92002-12-05 08:41:41 +000087
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000088config FEATURE_COMPRESS_USAGE
Rob Landley7e21d5f2006-04-27 23:34:46 +000089 bool "Store applet usage messages in compressed form"
90 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000091 depends on SHOW_USAGE
Rob Landley7e21d5f2006-04-27 23:34:46 +000092 help
93 Store usage messages in compressed form, uncompress them on-the-fly
94 when <applet> --help is called.
95
Rob Landleyc7ddefc2006-06-14 01:24:33 +000096 If you have a really tiny busybox with few applets enabled (and
97 bunzip2 isn't one of them), the overhead of the decompressor might
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +000098 be noticeable. Also, if you run executables directly from ROM
99 and have very little memory, this might not be a win. Otherwise,
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000100 you probably want this.
101
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000102config FEATURE_INSTALLER
Eric Andersenc9f20d92002-12-05 08:41:41 +0000103 bool "Support --install [-s] to install applet links at runtime"
104 default n
105 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000106 Enable 'busybox --install [-s]' support. This will allow you to use
Eric Andersen53601822002-12-05 21:12:42 +0000107 busybox at runtime to create hard links or symlinks for all the
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000108 applets that are compiled into busybox.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000109
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000110config LOCALE_SUPPORT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000111 bool "Enable locale support (system needs locale for this to work)"
112 default n
113 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000114 Enable this if your system has locale support and you would like
Eric Andersen53601822002-12-05 21:12:42 +0000115 busybox to support locale settings.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000116
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000117config GETOPT_LONG
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000118 bool "Support for --long-options"
Bernhard Reutner-Fischer74704192006-06-16 14:03:23 +0000119 default y
Denis Vlasenkoc61852a2006-11-29 11:09:43 +0000120 help
121 Enable this if you want busybox applets to use the gnu --long-option
122 style, in addition to single character -a -b -c style options.
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000123
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000124config FEATURE_DEVPTS
Eric Andersenc9f20d92002-12-05 08:41:41 +0000125 bool "Use the devpts filesystem for Unix98 PTYs"
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000126 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000127 help
Eric Andersen53601822002-12-05 21:12:42 +0000128 Enable if you want BusyBox to use Unix98 PTY support. If enabled,
129 busybox will use /dev/ptmx for the master side of the pseudoterminal
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000130 and /dev/pts/<number> for the slave side. Otherwise, BSD style
Eric Andersen53601822002-12-05 21:12:42 +0000131 /dev/ttyp<number> will be used. To use this option, you should have
Rob Landleyd5b9b602006-05-31 23:23:42 +0000132 devpts mounted.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000133
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000134config FEATURE_CLEAN_UP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000135 bool "Clean up all memory before exiting (usually not needed)"
136 default n
137 help
Rob Landley1ab4c3d2006-02-08 18:50:17 +0000138 As a size optimization, busybox normally exits without explicitly
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000139 freeing dynamically allocated memory or closing files. This saves
Rob Landley1ab4c3d2006-02-08 18:50:17 +0000140 space since the OS will clean up for us, but it can confuse debuggers
141 like valgrind, which report tons of memory and resource leaks.
142
143 Don't enable this unless you have a really good reason to clean
Eric Andersene5642112003-07-14 19:37:08 +0000144 things up manually.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000145
Denis Vlasenko10457b92007-03-27 22:01:31 +0000146config FEATURE_PIDFILE
147 bool "Support writing pidfiles"
148 default n
149 help
Denis Vlasenkobb23c062007-08-15 20:05:37 +0000150 This option makes some applets (e.g. crond, syslogd, inetd) write
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000151 a pidfile in /var/run. Some applications rely on them.
Denis Vlasenko10457b92007-03-27 22:01:31 +0000152
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000153config FEATURE_SUID
Eric Andersenc9f20d92002-12-05 08:41:41 +0000154 bool "Support for SUID/SGID handling"
155 default n
156 help
Rob Landleyd5b9b602006-05-31 23:23:42 +0000157 With this option you can install the busybox binary belonging
158 to root with the suid bit set, and it'll and it'll automatically drop
159 priviledges for applets that don't need root access.
160
161 If you're really paranoid and don't want to do this, build two
162 busybox binaries with different applets in them (and the appropriate
163 symlinks pointing to each binary), and only set the suid bit on the
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000164 one that needs it. The applets currently marked to need the suid bit
Rob Landleyd5b9b602006-05-31 23:23:42 +0000165 are login, passwd, su, ping, traceroute, crontab, dnsd, ipcrm, ipcs,
166 and vlock.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000167
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000168config FEATURE_SUID_CONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000169 bool "Runtime SUID/SGID configuration via /etc/busybox.conf"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000170 default n if FEATURE_SUID
171 depends on FEATURE_SUID
Eric Andersenc9f20d92002-12-05 08:41:41 +0000172 help
Rob Landleyd5b9b602006-05-31 23:23:42 +0000173 Allow the SUID / SGID state of an applet to be determined at runtime
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000174 by checking /etc/busybox.conf. (This is sort of a poor man's sudo.)
Rob Landleyd5b9b602006-05-31 23:23:42 +0000175 The format of this file is as follows:
Eric Andersene5272072003-07-22 22:15:21 +0000176
177 <applet> = [Ssx-][Ssx-][x-] (<username>|<uid>).(<groupname>|<gid>)
Eric Andersen5043ea12005-06-23 19:15:40 +0000178
Eric Andersene5272072003-07-22 22:15:21 +0000179 An example might help:
180
181 [SUID]
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000182 su = ssx root.0 # applet su can be run by anyone and runs with
183 # euid=0/egid=0
Eric Andersene5272072003-07-22 22:15:21 +0000184 su = ssx # exactly the same
185
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000186 mount = sx- root.disk # applet mount can be run by root and members
187 # of group disk and runs with euid=0
Eric Andersene5272072003-07-22 22:15:21 +0000188
189 cp = --- # disable applet cp for everyone
190
Rob Landleyfdc4c202005-04-29 19:48:29 +0000191 The file has to be owned by user root, group root and has to be
192 writeable only by root:
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000193 (chown 0.0 /etc/busybox.conf; chmod 600 /etc/busybox.conf)
Rob Landleyfdc4c202005-04-29 19:48:29 +0000194 The busybox executable has to be owned by user root, group
195 root and has to be setuid root for this to work:
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000196 (chown 0.0 /bin/busybox; chmod 4755 /bin/busybox)
Rob Landleyfdc4c202005-04-29 19:48:29 +0000197
Eric Andersene5272072003-07-22 22:15:21 +0000198 Robert 'sandman' Griebl has more information here:
199 <url: http://www.softforge.de/bb/suid.html >.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000200
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000201config FEATURE_SUID_CONFIG_QUIET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000202 bool "Suppress warning message if /etc/busybox.conf is not readable"
Rob Landleyd5b9b602006-05-31 23:23:42 +0000203 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000204 depends on FEATURE_SUID_CONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000205 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000206 /etc/busybox.conf should be readable by the user needing the SUID,
207 check this option to avoid users to be notified about missing
208 permissions.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000209
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000210config SELINUX
Eric Andersen9e480452003-07-03 10:07:04 +0000211 bool "Support NSA Security Enhanced Linux"
212 default n
213 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000214 Enable support for SELinux in applets ls, ps, and id. Also provide
Rob Landley24b0a952006-03-29 15:35:23 +0000215 the option of compiling in SELinux applets.
Eric Andersen9e480452003-07-03 10:07:04 +0000216
Rob Landley24b0a952006-03-29 15:35:23 +0000217 If you do not have a complete SELinux userland installed, this stuff
218 will not compile. Go visit
Eric Andersen31d898f2004-02-05 00:18:26 +0000219 http://www.nsa.gov/selinux/index.html
Rob Landley24b0a952006-03-29 15:35:23 +0000220 to download the necessary stuff to allow busybox to compile with
221 this option enabled. Specifially, libselinux 1.28 or better is
222 directly required by busybox. If the installation is located in a
223 non-standard directory, provide it by invoking make as follows:
224 CFLAGS=-I<libselinux-include-path> \
225 LDFLAGS=-L<libselinux-lib-path> \
226 make
Eric Andersen31d898f2004-02-05 00:18:26 +0000227
228 Most people will leave this set to 'N'.
229
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000230config FEATURE_PREFER_APPLETS
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000231 bool "exec prefers applets"
232 default n
233 help
234 This is an experimental option which directs applets about to
235 call 'exec' to try and find an applicable busybox applet before
Denis Vlasenko92c0b822007-05-08 17:27:17 +0000236 searching the PATH. This is typically done by exec'ing
237 /proc/self/exe.
238 This may affect shell, find -exec, xargs and similar applets.
239 They will use applets even if /bin/<applet> -> busybox link
240 is missing (or is not a link to busybox). However, this causes
241 problems in chroot jails without mounted /proc and with ps/top
242 (command name can be shown as 'exe' for applets started this way).
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000243
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000244config BUSYBOX_EXEC_PATH
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000245 string "Path to BusyBox executable"
246 default "/proc/self/exe"
247 help
248 When Busybox applets need to run other busybox applets, BusyBox
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000249 sometimes needs to exec() itself. When the /proc filesystem is
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000250 mounted, /proc/self/exe always points to the currently running
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000251 executable. If you haven't got /proc, set this to wherever you
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000252 want to run BusyBox from.
253
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000254# These are auto-selected by other options
255
256config FEATURE_SYSLOG
257 bool "Support for logging to syslog"
258 default n
259 help
260 This option is auto-selected when you select any applet which may
261 send its output to syslog. You do not need to select it manually.
262
263config FEATURE_HAVE_RPC
264 bool "RPC support"
265 default n
266 help
267 This is automatically selected if any of enabled applets need it.
268 You do not need to select it manually.
269
Eric Andersenc9f20d92002-12-05 08:41:41 +0000270endmenu
271
272menu 'Build Options'
273
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000274config STATIC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000275 bool "Build BusyBox as a static binary (no shared libs)"
276 default n
277 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000278 If you want to build a static BusyBox binary, which does not
279 use or require any shared libraries, then enable this option.
Eric Andersen88c916b2003-10-22 09:58:56 +0000280 This can cause BusyBox to be considerably larger, so you should
Eric Andersene5272072003-07-22 22:15:21 +0000281 leave this option false unless you have a good reason (i.e.
282 your target platform does not support shared libraries, or
283 you are building an initrd which doesn't need anything but
284 BusyBox, etc).
Eric Andersenc9f20d92002-12-05 08:41:41 +0000285
Eric Andersene5272072003-07-22 22:15:21 +0000286 Most people will leave this set to 'N'.
287
Denis Vlasenko1da86d22008-06-04 11:28:24 +0000288config PIE
289 bool "Build BusyBox as a position independent executable"
290 default n
291 depends on !STATIC
292 help
293 (TODO: what is it and why/when is it useful?)
294 Most people will leave this set to 'N'.
295
Denis Vlasenkod2c450c2008-01-08 20:32:12 +0000296config NOMMU
297 bool "Force NOMMU build"
298 default n
299 help
300 Busybox tries to detect whether architecture it is being
301 built against supports MMU or not. If this detection fails,
302 or if you want to build NOMMU version of busybox for testing,
303 you may force NOMMU build here.
304
305 Most people will leave this set to 'N'.
306
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000307# PIE can be made to work with BUILD_LIBBUSYBOX, but currently
308# build system does not support that
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000309config BUILD_LIBBUSYBOX
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000310 bool "Build shared libbusybox"
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000311 default n
Denis Vlasenkofc5e8062008-07-09 21:24:18 +0000312 depends on !FEATURE_PREFER_APPLETS && !PIE && !STATIC
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000313 help
Denis Vlasenkod62fd842007-10-07 20:46:34 +0000314 Build a shared library libbusybox.so.N.N.N which contains all
315 busybox code.
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000316
Denis Vlasenkod62fd842007-10-07 20:46:34 +0000317 This feature allows every applet to be built as a tiny
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000318 separate executable. Enabling it for "one big busybox binary"
Denis Vlasenkod62fd842007-10-07 20:46:34 +0000319 approach serves no purpose and increases code size.
320 You should almost certainly say "no" to this.
Rob Landleyd6e50832006-06-15 15:04:53 +0000321
Denis Vlasenkodef88982007-10-07 17:06:01 +0000322### config FEATURE_FULL_LIBBUSYBOX
323### bool "Feature-complete libbusybox"
324### default n if !FEATURE_SHARED_BUSYBOX
325### depends on BUILD_LIBBUSYBOX
326### help
327### Build a libbusybox with the complete feature-set, disregarding
328### the actually selected config.
329###
330### Normally, libbusybox will only contain the features which are
331### used by busybox itself. If you plan to write a separate
332### standalone application which uses libbusybox say 'Y'.
333###
334### Note: libbusybox is GPL, not LGPL, and exports no stable API that
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000335### might act as a copyright barrier. We can and will modify the
Denis Vlasenkodef88982007-10-07 17:06:01 +0000336### exported function set between releases (even minor version number
337### changes), and happily break out-of-tree features.
338###
339### Say 'N' if in doubt.
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000340
Denis Vlasenkof545be02007-10-07 17:06:26 +0000341config FEATURE_INDIVIDUAL
342 bool "Produce a binary for each applet, linked against libbusybox"
343 default y
Denis Vlasenkofc5e8062008-07-09 21:24:18 +0000344 depends on BUILD_LIBBUSYBOX
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000345 help
Denis Vlasenkof545be02007-10-07 17:06:26 +0000346 If your CPU architecture doesn't allow for sharing text/rodata
347 sections of running binaries, but allows for runtime dynamic
348 libraries, this option will allow you to reduce memory footprint
349 when you have many different applets running at once.
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000350
Denis Vlasenkof545be02007-10-07 17:06:26 +0000351 If your CPU architecture allows for sharing text/rodata,
352 having single binary is more optimal.
353
354 Each applet will be a tiny program, dynamically linked
355 against libbusybox.so.N.N.N.
356
357 You need to have a working dynamic linker.
358
359config FEATURE_SHARED_BUSYBOX
360 bool "Produce additional busybox binary linked against libbusybox"
361 default y
Denis Vlasenkofc5e8062008-07-09 21:24:18 +0000362 depends on BUILD_LIBBUSYBOX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000363 help
Denis Vlasenkof545be02007-10-07 17:06:26 +0000364 Build busybox, dynamically linked against libbusybox.so.N.N.N.
365
366 You need to have a working dynamic linker.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000367
Denis Vlasenkodef88982007-10-07 17:06:01 +0000368### config BUILD_AT_ONCE
369### bool "Compile all sources at once"
370### default n
371### help
372### Normally each source-file is compiled with one invocation of
373### the compiler.
374### If you set this option, all sources are compiled at once.
375### This gives the compiler more opportunities to optimize which can
376### result in smaller and/or faster binaries.
377###
378### Setting this option will consume alot of memory, e.g. if you
379### enable all applets with all features, gcc uses more than 300MB
380### RAM during compilation of busybox.
381###
382### This option is most likely only beneficial for newer compilers
383### such as gcc-4.1 and above.
384###
385### Say 'N' unless you know what you are doing.
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000386
Denis Vlasenkof545be02007-10-07 17:06:26 +0000387config LFS
388 bool "Build with Large File Support (for accessing files > 2 GB)"
389 default n
390 select FDISK_SUPPORT_LARGE_DISKS
391 help
392 If you want to build BusyBox with large file support, then enable
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000393 this option. This will have no effect if your kernel or your C
394 library lacks large file support for large files. Some of the
Denis Vlasenkof545be02007-10-07 17:06:26 +0000395 programs that can benefit from large file support include dd, gzip,
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000396 cp, mount, tar, and many others. If you want to access files larger
397 than 2 Gigabytes, enable this option. Otherwise, leave it set to 'N'.
Denis Vlasenkof545be02007-10-07 17:06:26 +0000398
Denis Vlasenkob8e653b2008-06-02 04:51:29 +0000399config CROSS_COMPILER_PREFIX
400 string "Cross Compiler prefix"
401 default ""
402 help
403 If you want to build BusyBox with a cross compiler, then you
404 will need to set this to the cross-compiler prefix, for example,
Bernhard Reutner-Fischer7d0d3e22008-08-22 08:25:26 +0000405 "i386-uclibc-".
406
407 Note that CROSS_COMPILE environment variable or
408 "make CROSS_COMPILE=xxx ..." will override this selection.
409
410 Native builds leave this empty.
Denis Vlasenkob8e653b2008-06-02 04:51:29 +0000411
Eric Andersenc9f20d92002-12-05 08:41:41 +0000412endmenu
413
Eric Andersenc9f20d92002-12-05 08:41:41 +0000414menu 'Debugging Options'
415
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000416config DEBUG
Rob Landleyc503df52006-05-09 22:08:56 +0000417 bool "Build BusyBox with extra Debugging symbols"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000418 default n
419 help
Rob Landleyc503df52006-05-09 22:08:56 +0000420 Say Y here if you wish to examine BusyBox internals while applets are
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000421 running. This increases the size of the binary considerably, and
422 should only be used when doing development. If you are doing
Rob Landleyc503df52006-05-09 22:08:56 +0000423 development and want to debug BusyBox, answer Y.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000424
Eric Andersenf086ed82004-05-25 11:30:22 +0000425 Most people should answer N.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000426
Denis Vlasenkobd8390a2008-06-12 20:23:03 +0000427config DEBUG_PESSIMIZE
Denis Vlasenkoc185e292008-07-16 23:45:11 +0000428 bool "Disable compiler optimizations"
Denis Vlasenkobd8390a2008-06-12 20:23:03 +0000429 default n
430 depends on DEBUG
431 help
432 The compiler's optimization of source code can eliminate and reorder
433 code, resulting in an executable that's hard to understand when
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000434 stepping through it with a debugger. This switches it off, resulting
Denis Vlasenkobd8390a2008-06-12 20:23:03 +0000435 in a much bigger executable that more closely matches the source
436 code.
437
Denis Vlasenkoe0eebc12007-01-27 13:44:53 +0000438config WERROR
439 bool "Abort compilation on any warning"
Rob Landleyc503df52006-05-09 22:08:56 +0000440 default n
Rob Landleyc503df52006-05-09 22:08:56 +0000441 help
Denis Vlasenkoe0eebc12007-01-27 13:44:53 +0000442 Selecting this will add -Werror to gcc command line.
443
444 Most people should answer N.
445
Eric Andersenf086ed82004-05-25 11:30:22 +0000446choice
447 prompt "Additional debugging library"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000448 default NO_DEBUG_LIB
Eric Andersenc9f20d92002-12-05 08:41:41 +0000449 help
Eric Andersenf086ed82004-05-25 11:30:22 +0000450 Using an additional debugging library will make BusyBox become
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000451 considerable larger and will cause it to run more slowly. You
Eric Andersenf086ed82004-05-25 11:30:22 +0000452 should always leave this option disabled for production use.
453
454 dmalloc support:
455 ----------------
Eric Andersenc9f20d92002-12-05 08:41:41 +0000456 This enables compiling with dmalloc ( http://dmalloc.com/ )
457 which is an excellent public domain mem leak and malloc problem
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000458 detector. To enable dmalloc, before running busybox you will
Eric Andersenc9f20d92002-12-05 08:41:41 +0000459 want to properly set your environment, for example:
460 export DMALLOC_OPTIONS=debug=0x34f47d83,inter=100,log=logfile
461 The 'debug=' value is generated using the following command
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000462 dmalloc -p log-stats -p log-non-free -p log-bad-space \
463 -p log-elapsed-time -p check-fence -p check-heap \
464 -p check-lists -p check-blank -p check-funcs -p realloc-copy \
465 -p allow-free-null
Eric Andersenc9f20d92002-12-05 08:41:41 +0000466
Eric Andersenf086ed82004-05-25 11:30:22 +0000467 Electric-fence support:
468 -----------------------
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000469 This enables compiling with Electric-fence support. Electric
Eric Andersen88c916b2003-10-22 09:58:56 +0000470 fence is another very useful malloc debugging library which uses
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000471 your computer's virtual memory hardware to detect illegal memory
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000472 accesses. This support will make BusyBox be considerable larger
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000473 and run slower, so you should leave this option disabled unless
Eric Andersenc9f20d92002-12-05 08:41:41 +0000474 you are hunting a hard to find memory problem.
475
Eric Andersenf086ed82004-05-25 11:30:22 +0000476
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000477config NO_DEBUG_LIB
Eric Andersenf086ed82004-05-25 11:30:22 +0000478 bool "None"
479
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000480config DMALLOC
Eric Andersenf086ed82004-05-25 11:30:22 +0000481 bool "Dmalloc"
482
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000483config EFENCE
Eric Andersenf086ed82004-05-25 11:30:22 +0000484 bool "Electric-fence"
485
486endchoice
487
Denis Vlasenko08492072006-12-22 13:56:36 +0000488config INCLUDE_SUSv2
489 bool "Enable obsolete features removed before SUSv3?"
Rob Landleyf8fd4db2006-01-30 01:30:39 +0000490 default y
491 help
Denis Vlasenko08492072006-12-22 13:56:36 +0000492 This option will enable backwards compatibility with SuSv2,
Rob Landleyf8fd4db2006-01-30 01:30:39 +0000493 specifically, old-style numeric options ('command -1 <file>')
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000494 will be supported in head, tail, and fold. (Note: should
Denis Vlasenko08492072006-12-22 13:56:36 +0000495 affect renice too.)
Eric Andersenf086ed82004-05-25 11:30:22 +0000496
Denis Vlasenko2d5bd802008-10-24 10:49:49 +0000497### config PARSE
498### bool "Uniform config file parser debugging applet: parse"
Denis Vlasenko2e157dd2008-07-19 09:27:19 +0000499
Eric Andersenc9f20d92002-12-05 08:41:41 +0000500endmenu
Mike Frysinger72d59db2006-03-10 23:17:17 +0000501
502menu 'Installation Options'
503
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000504config INSTALL_NO_USR
Mike Frysinger72d59db2006-03-10 23:17:17 +0000505 bool "Don't use /usr"
506 default n
507 help
508 Disable use of /usr. Don't activate this option if you don't know
509 that you really want this behaviour.
510
511choice
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000512 prompt "Applets links"
513 default INSTALL_APPLET_SYMLINKS
514 help
515 Choose how you install applets links.
Mike Frysinger72d59db2006-03-10 23:17:17 +0000516
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000517config INSTALL_APPLET_SYMLINKS
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000518 bool "as soft-links"
519 help
520 Install applets as soft-links to the busybox binary. This needs some
521 free inodes on the filesystem, but might help with filesystem
522 generators that can't cope with hard-links.
Mike Frysinger72d59db2006-03-10 23:17:17 +0000523
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000524config INSTALL_APPLET_HARDLINKS
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000525 bool "as hard-links"
526 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000527 Install applets as hard-links to the busybox binary. This might
528 count on a filesystem with few inodes.
Mike Frysinger72d59db2006-03-10 23:17:17 +0000529
Denis Vlasenko737d1312007-08-25 18:25:24 +0000530config INSTALL_APPLET_SCRIPT_WRAPPERS
531 bool "as script wrappers"
532 help
533 Install applets as script wrappers that call the busybox binary.
534
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000535config INSTALL_APPLET_DONT
Mike Frysinger6cda8972007-01-24 09:32:42 +0000536 bool "not installed"
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000537 depends on FEATURE_INSTALLER || FEATURE_SH_STANDALONE || FEATURE_PREFER_APPLETS
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000538 help
539 Do not install applet links. Useful when using the -install feature
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000540 or a standalone shell for rescue purposes.
Mike Frysinger72d59db2006-03-10 23:17:17 +0000541
542endchoice
543
Denis Vlasenko737d1312007-08-25 18:25:24 +0000544choice
545 prompt "/bin/sh applet link"
546 default INSTALL_SH_APPLET_SYMLINK
547 depends on INSTALL_APPLET_SCRIPT_WRAPPERS
548 help
549 Choose how you install /bin/sh applet link.
550
551config INSTALL_SH_APPLET_SYMLINK
552 bool "as soft-link"
553 help
554 Install /bin/sh applet as soft-link to the busybox binary.
555
556config INSTALL_SH_APPLET_HARDLINK
557 bool "as hard-link"
558 help
559 Install /bin/sh applet as hard-link to the busybox binary.
560
561config INSTALL_SH_APPLET_SCRIPT_WRAPPER
562 bool "as script wrapper"
563 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000564 Install /bin/sh applet as script wrapper that call the busybox
565 binary.
Denis Vlasenko737d1312007-08-25 18:25:24 +0000566
567endchoice
568
Mike Frysinger72d59db2006-03-10 23:17:17 +0000569config PREFIX
570 string "BusyBox installation prefix"
571 default "./_install"
572 help
573 Define your directory to install BusyBox files/subdirs in.
574
575endmenu
576
577source libbb/Config.in
578
Rob Landley9dc69132006-03-13 02:52:23 +0000579endmenu
580
Mike Frysinger72d59db2006-03-10 23:17:17 +0000581comment "Applets"
582
583source archival/Config.in
584source coreutils/Config.in
585source console-tools/Config.in
586source debianutils/Config.in
587source editors/Config.in
588source findutils/Config.in
589source init/Config.in
590source loginutils/Config.in
591source e2fsprogs/Config.in
592source modutils/Config.in
593source util-linux/Config.in
594source miscutils/Config.in
595source networking/Config.in
596source procps/Config.in
597source shell/Config.in
598source sysklogd/Config.in
Denis Vlasenkofe544582006-10-03 15:57:40 +0000599source runit/Config.in
Denis Vlasenkod46d3c22007-02-06 19:28:50 +0000600source selinux/Config.in
Denis Vlasenko68444b92008-02-22 22:24:48 +0000601source printutils/Config.in