blob: ee706eb0d90838cb42a88364daa351187103e59d [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
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200117config LONG_OPTS
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
Bernhard Reutner-Fischeraa2a1c02008-10-24 19:48:47 +0000158 to root with the suid bit set, and it will automatically drop
Rob Landleyd5b9b602006-05-31 23:23:42 +0000159 priviledges for applets that don't need root access.
160
Bernhard Reutner-Fischeraa2a1c02008-10-24 19:48:47 +0000161 If you are really paranoid and don't want to do this, build two
Rob Landleyd5b9b602006-05-31 23:23:42 +0000162 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
Bernhard Reutner-Fischeraa2a1c02008-10-24 19:48:47 +0000165 are:
166
167 crontab, dnsd, findfs, ipcrm, ipcs, login, passwd, ping, su,
168 traceroute, vlock.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000169
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000170config FEATURE_SUID_CONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000171 bool "Runtime SUID/SGID configuration via /etc/busybox.conf"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000172 default n if FEATURE_SUID
173 depends on FEATURE_SUID
Eric Andersenc9f20d92002-12-05 08:41:41 +0000174 help
Rob Landleyd5b9b602006-05-31 23:23:42 +0000175 Allow the SUID / SGID state of an applet to be determined at runtime
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000176 by checking /etc/busybox.conf. (This is sort of a poor man's sudo.)
Rob Landleyd5b9b602006-05-31 23:23:42 +0000177 The format of this file is as follows:
Eric Andersene5272072003-07-22 22:15:21 +0000178
179 <applet> = [Ssx-][Ssx-][x-] (<username>|<uid>).(<groupname>|<gid>)
Eric Andersen5043ea12005-06-23 19:15:40 +0000180
Eric Andersene5272072003-07-22 22:15:21 +0000181 An example might help:
182
183 [SUID]
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000184 su = ssx root.0 # applet su can be run by anyone and runs with
185 # euid=0/egid=0
Eric Andersene5272072003-07-22 22:15:21 +0000186 su = ssx # exactly the same
187
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000188 mount = sx- root.disk # applet mount can be run by root and members
189 # of group disk and runs with euid=0
Eric Andersene5272072003-07-22 22:15:21 +0000190
191 cp = --- # disable applet cp for everyone
192
Rob Landleyfdc4c202005-04-29 19:48:29 +0000193 The file has to be owned by user root, group root and has to be
194 writeable only by root:
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000195 (chown 0.0 /etc/busybox.conf; chmod 600 /etc/busybox.conf)
Rob Landleyfdc4c202005-04-29 19:48:29 +0000196 The busybox executable has to be owned by user root, group
197 root and has to be setuid root for this to work:
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000198 (chown 0.0 /bin/busybox; chmod 4755 /bin/busybox)
Rob Landleyfdc4c202005-04-29 19:48:29 +0000199
Eric Andersene5272072003-07-22 22:15:21 +0000200 Robert 'sandman' Griebl has more information here:
201 <url: http://www.softforge.de/bb/suid.html >.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000202
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000203config FEATURE_SUID_CONFIG_QUIET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000204 bool "Suppress warning message if /etc/busybox.conf is not readable"
Rob Landleyd5b9b602006-05-31 23:23:42 +0000205 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000206 depends on FEATURE_SUID_CONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000207 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000208 /etc/busybox.conf should be readable by the user needing the SUID,
209 check this option to avoid users to be notified about missing
210 permissions.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000211
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000212config SELINUX
Eric Andersen9e480452003-07-03 10:07:04 +0000213 bool "Support NSA Security Enhanced Linux"
214 default n
215 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000216 Enable support for SELinux in applets ls, ps, and id. Also provide
Rob Landley24b0a952006-03-29 15:35:23 +0000217 the option of compiling in SELinux applets.
Eric Andersen9e480452003-07-03 10:07:04 +0000218
Rob Landley24b0a952006-03-29 15:35:23 +0000219 If you do not have a complete SELinux userland installed, this stuff
220 will not compile. Go visit
Eric Andersen31d898f2004-02-05 00:18:26 +0000221 http://www.nsa.gov/selinux/index.html
Rob Landley24b0a952006-03-29 15:35:23 +0000222 to download the necessary stuff to allow busybox to compile with
223 this option enabled. Specifially, libselinux 1.28 or better is
224 directly required by busybox. If the installation is located in a
225 non-standard directory, provide it by invoking make as follows:
226 CFLAGS=-I<libselinux-include-path> \
227 LDFLAGS=-L<libselinux-lib-path> \
228 make
Eric Andersen31d898f2004-02-05 00:18:26 +0000229
230 Most people will leave this set to 'N'.
231
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000232config FEATURE_PREFER_APPLETS
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000233 bool "exec prefers applets"
234 default n
235 help
236 This is an experimental option which directs applets about to
237 call 'exec' to try and find an applicable busybox applet before
Denis Vlasenko92c0b822007-05-08 17:27:17 +0000238 searching the PATH. This is typically done by exec'ing
239 /proc/self/exe.
240 This may affect shell, find -exec, xargs and similar applets.
241 They will use applets even if /bin/<applet> -> busybox link
242 is missing (or is not a link to busybox). However, this causes
243 problems in chroot jails without mounted /proc and with ps/top
244 (command name can be shown as 'exe' for applets started this way).
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000245
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000246config BUSYBOX_EXEC_PATH
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000247 string "Path to BusyBox executable"
248 default "/proc/self/exe"
249 help
250 When Busybox applets need to run other busybox applets, BusyBox
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000251 sometimes needs to exec() itself. When the /proc filesystem is
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000252 mounted, /proc/self/exe always points to the currently running
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000253 executable. If you haven't got /proc, set this to wherever you
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000254 want to run BusyBox from.
255
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000256# These are auto-selected by other options
257
258config FEATURE_SYSLOG
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000259 bool #No description makes it a hidden option
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000260 default n
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000261 #help
262 # This option is auto-selected when you select any applet which may
263 # send its output to syslog. You do not need to select it manually.
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000264
265config FEATURE_HAVE_RPC
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000266 bool #No description makes it a hidden option
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000267 default n
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000268 #help
269 # This is automatically selected if any of enabled applets need it.
270 # You do not need to select it manually.
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000271
Eric Andersenc9f20d92002-12-05 08:41:41 +0000272endmenu
273
274menu 'Build Options'
275
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000276config STATIC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000277 bool "Build BusyBox as a static binary (no shared libs)"
278 default n
279 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000280 If you want to build a static BusyBox binary, which does not
281 use or require any shared libraries, then enable this option.
Eric Andersen88c916b2003-10-22 09:58:56 +0000282 This can cause BusyBox to be considerably larger, so you should
Eric Andersene5272072003-07-22 22:15:21 +0000283 leave this option false unless you have a good reason (i.e.
284 your target platform does not support shared libraries, or
285 you are building an initrd which doesn't need anything but
286 BusyBox, etc).
Eric Andersenc9f20d92002-12-05 08:41:41 +0000287
Eric Andersene5272072003-07-22 22:15:21 +0000288 Most people will leave this set to 'N'.
289
Denis Vlasenko1da86d22008-06-04 11:28:24 +0000290config PIE
291 bool "Build BusyBox as a position independent executable"
292 default n
293 depends on !STATIC
294 help
295 (TODO: what is it and why/when is it useful?)
296 Most people will leave this set to 'N'.
297
Denis Vlasenkod2c450c2008-01-08 20:32:12 +0000298config NOMMU
299 bool "Force NOMMU build"
300 default n
301 help
302 Busybox tries to detect whether architecture it is being
303 built against supports MMU or not. If this detection fails,
304 or if you want to build NOMMU version of busybox for testing,
305 you may force NOMMU build here.
306
307 Most people will leave this set to 'N'.
308
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000309# PIE can be made to work with BUILD_LIBBUSYBOX, but currently
310# build system does not support that
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000311config BUILD_LIBBUSYBOX
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000312 bool "Build shared libbusybox"
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000313 default n
Denis Vlasenkofc5e8062008-07-09 21:24:18 +0000314 depends on !FEATURE_PREFER_APPLETS && !PIE && !STATIC
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000315 help
Denis Vlasenkod62fd842007-10-07 20:46:34 +0000316 Build a shared library libbusybox.so.N.N.N which contains all
317 busybox code.
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000318
Denis Vlasenkod62fd842007-10-07 20:46:34 +0000319 This feature allows every applet to be built as a tiny
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000320 separate executable. Enabling it for "one big busybox binary"
Denis Vlasenkod62fd842007-10-07 20:46:34 +0000321 approach serves no purpose and increases code size.
322 You should almost certainly say "no" to this.
Rob Landleyd6e50832006-06-15 15:04:53 +0000323
Denis Vlasenkodef88982007-10-07 17:06:01 +0000324### config FEATURE_FULL_LIBBUSYBOX
325### bool "Feature-complete libbusybox"
326### default n if !FEATURE_SHARED_BUSYBOX
327### depends on BUILD_LIBBUSYBOX
328### help
329### Build a libbusybox with the complete feature-set, disregarding
330### the actually selected config.
331###
332### Normally, libbusybox will only contain the features which are
333### used by busybox itself. If you plan to write a separate
334### standalone application which uses libbusybox say 'Y'.
335###
336### Note: libbusybox is GPL, not LGPL, and exports no stable API that
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000337### might act as a copyright barrier. We can and will modify the
Denis Vlasenkodef88982007-10-07 17:06:01 +0000338### exported function set between releases (even minor version number
339### changes), and happily break out-of-tree features.
340###
341### Say 'N' if in doubt.
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000342
Denis Vlasenkof545be02007-10-07 17:06:26 +0000343config FEATURE_INDIVIDUAL
344 bool "Produce a binary for each applet, linked against libbusybox"
345 default y
Denis Vlasenkofc5e8062008-07-09 21:24:18 +0000346 depends on BUILD_LIBBUSYBOX
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000347 help
Denis Vlasenkof545be02007-10-07 17:06:26 +0000348 If your CPU architecture doesn't allow for sharing text/rodata
349 sections of running binaries, but allows for runtime dynamic
350 libraries, this option will allow you to reduce memory footprint
351 when you have many different applets running at once.
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000352
Denis Vlasenkof545be02007-10-07 17:06:26 +0000353 If your CPU architecture allows for sharing text/rodata,
354 having single binary is more optimal.
355
356 Each applet will be a tiny program, dynamically linked
357 against libbusybox.so.N.N.N.
358
359 You need to have a working dynamic linker.
360
361config FEATURE_SHARED_BUSYBOX
362 bool "Produce additional busybox binary linked against libbusybox"
363 default y
Denis Vlasenkofc5e8062008-07-09 21:24:18 +0000364 depends on BUILD_LIBBUSYBOX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000365 help
Denis Vlasenkof545be02007-10-07 17:06:26 +0000366 Build busybox, dynamically linked against libbusybox.so.N.N.N.
367
368 You need to have a working dynamic linker.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000369
Denis Vlasenkodef88982007-10-07 17:06:01 +0000370### config BUILD_AT_ONCE
371### bool "Compile all sources at once"
372### default n
373### help
374### Normally each source-file is compiled with one invocation of
375### the compiler.
376### If you set this option, all sources are compiled at once.
377### This gives the compiler more opportunities to optimize which can
378### result in smaller and/or faster binaries.
379###
380### Setting this option will consume alot of memory, e.g. if you
381### enable all applets with all features, gcc uses more than 300MB
382### RAM during compilation of busybox.
383###
384### This option is most likely only beneficial for newer compilers
385### such as gcc-4.1 and above.
386###
387### Say 'N' unless you know what you are doing.
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000388
Denis Vlasenkof545be02007-10-07 17:06:26 +0000389config LFS
390 bool "Build with Large File Support (for accessing files > 2 GB)"
391 default n
392 select FDISK_SUPPORT_LARGE_DISKS
393 help
394 If you want to build BusyBox with large file support, then enable
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000395 this option. This will have no effect if your kernel or your C
396 library lacks large file support for large files. Some of the
Denis Vlasenkof545be02007-10-07 17:06:26 +0000397 programs that can benefit from large file support include dd, gzip,
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000398 cp, mount, tar, and many others. If you want to access files larger
399 than 2 Gigabytes, enable this option. Otherwise, leave it set to 'N'.
Denis Vlasenkof545be02007-10-07 17:06:26 +0000400
Denis Vlasenkob8e653b2008-06-02 04:51:29 +0000401config CROSS_COMPILER_PREFIX
402 string "Cross Compiler prefix"
403 default ""
404 help
405 If you want to build BusyBox with a cross compiler, then you
406 will need to set this to the cross-compiler prefix, for example,
Bernhard Reutner-Fischer7d0d3e22008-08-22 08:25:26 +0000407 "i386-uclibc-".
408
409 Note that CROSS_COMPILE environment variable or
410 "make CROSS_COMPILE=xxx ..." will override this selection.
411
412 Native builds leave this empty.
Denis Vlasenkob8e653b2008-06-02 04:51:29 +0000413
Bernhard Reutner-Fischerf6107c72009-01-22 13:27:14 +0000414config EXTRA_CFLAGS
415 string "Additional CFLAGS"
416 default ""
417 help
418 Additional CFLAGS to pass to the compiler verbatim.
419
Eric Andersenc9f20d92002-12-05 08:41:41 +0000420endmenu
421
Eric Andersenc9f20d92002-12-05 08:41:41 +0000422menu 'Debugging Options'
423
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000424config DEBUG
Rob Landleyc503df52006-05-09 22:08:56 +0000425 bool "Build BusyBox with extra Debugging symbols"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000426 default n
427 help
Rob Landleyc503df52006-05-09 22:08:56 +0000428 Say Y here if you wish to examine BusyBox internals while applets are
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000429 running. This increases the size of the binary considerably, and
430 should only be used when doing development. If you are doing
Rob Landleyc503df52006-05-09 22:08:56 +0000431 development and want to debug BusyBox, answer Y.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000432
Eric Andersenf086ed82004-05-25 11:30:22 +0000433 Most people should answer N.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000434
Denis Vlasenkobd8390a2008-06-12 20:23:03 +0000435config DEBUG_PESSIMIZE
Denis Vlasenkoc185e292008-07-16 23:45:11 +0000436 bool "Disable compiler optimizations"
Denis Vlasenkobd8390a2008-06-12 20:23:03 +0000437 default n
438 depends on DEBUG
439 help
440 The compiler's optimization of source code can eliminate and reorder
441 code, resulting in an executable that's hard to understand when
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000442 stepping through it with a debugger. This switches it off, resulting
Denis Vlasenkobd8390a2008-06-12 20:23:03 +0000443 in a much bigger executable that more closely matches the source
444 code.
445
Denis Vlasenkoe0eebc12007-01-27 13:44:53 +0000446config WERROR
447 bool "Abort compilation on any warning"
Rob Landleyc503df52006-05-09 22:08:56 +0000448 default n
Rob Landleyc503df52006-05-09 22:08:56 +0000449 help
Denis Vlasenkoe0eebc12007-01-27 13:44:53 +0000450 Selecting this will add -Werror to gcc command line.
451
452 Most people should answer N.
453
Eric Andersenf086ed82004-05-25 11:30:22 +0000454choice
455 prompt "Additional debugging library"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000456 default NO_DEBUG_LIB
Eric Andersenc9f20d92002-12-05 08:41:41 +0000457 help
Eric Andersenf086ed82004-05-25 11:30:22 +0000458 Using an additional debugging library will make BusyBox become
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000459 considerable larger and will cause it to run more slowly. You
Eric Andersenf086ed82004-05-25 11:30:22 +0000460 should always leave this option disabled for production use.
461
462 dmalloc support:
463 ----------------
Eric Andersenc9f20d92002-12-05 08:41:41 +0000464 This enables compiling with dmalloc ( http://dmalloc.com/ )
465 which is an excellent public domain mem leak and malloc problem
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000466 detector. To enable dmalloc, before running busybox you will
Eric Andersenc9f20d92002-12-05 08:41:41 +0000467 want to properly set your environment, for example:
468 export DMALLOC_OPTIONS=debug=0x34f47d83,inter=100,log=logfile
469 The 'debug=' value is generated using the following command
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000470 dmalloc -p log-stats -p log-non-free -p log-bad-space \
471 -p log-elapsed-time -p check-fence -p check-heap \
472 -p check-lists -p check-blank -p check-funcs -p realloc-copy \
473 -p allow-free-null
Eric Andersenc9f20d92002-12-05 08:41:41 +0000474
Eric Andersenf086ed82004-05-25 11:30:22 +0000475 Electric-fence support:
476 -----------------------
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000477 This enables compiling with Electric-fence support. Electric
Eric Andersen88c916b2003-10-22 09:58:56 +0000478 fence is another very useful malloc debugging library which uses
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000479 your computer's virtual memory hardware to detect illegal memory
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000480 accesses. This support will make BusyBox be considerable larger
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000481 and run slower, so you should leave this option disabled unless
Eric Andersenc9f20d92002-12-05 08:41:41 +0000482 you are hunting a hard to find memory problem.
483
Eric Andersenf086ed82004-05-25 11:30:22 +0000484
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000485config NO_DEBUG_LIB
Eric Andersenf086ed82004-05-25 11:30:22 +0000486 bool "None"
487
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000488config DMALLOC
Eric Andersenf086ed82004-05-25 11:30:22 +0000489 bool "Dmalloc"
490
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000491config EFENCE
Eric Andersenf086ed82004-05-25 11:30:22 +0000492 bool "Electric-fence"
493
494endchoice
495
Denis Vlasenko08492072006-12-22 13:56:36 +0000496config INCLUDE_SUSv2
497 bool "Enable obsolete features removed before SUSv3?"
Rob Landleyf8fd4db2006-01-30 01:30:39 +0000498 default y
499 help
Denis Vlasenko08492072006-12-22 13:56:36 +0000500 This option will enable backwards compatibility with SuSv2,
Rob Landleyf8fd4db2006-01-30 01:30:39 +0000501 specifically, old-style numeric options ('command -1 <file>')
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000502 will be supported in head, tail, and fold. (Note: should
Denis Vlasenko08492072006-12-22 13:56:36 +0000503 affect renice too.)
Eric Andersenf086ed82004-05-25 11:30:22 +0000504
Denis Vlasenko2d5bd802008-10-24 10:49:49 +0000505### config PARSE
506### bool "Uniform config file parser debugging applet: parse"
Denis Vlasenko2e157dd2008-07-19 09:27:19 +0000507
Eric Andersenc9f20d92002-12-05 08:41:41 +0000508endmenu
Mike Frysinger72d59db2006-03-10 23:17:17 +0000509
510menu 'Installation Options'
511
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000512config INSTALL_NO_USR
Mike Frysinger72d59db2006-03-10 23:17:17 +0000513 bool "Don't use /usr"
514 default n
515 help
516 Disable use of /usr. Don't activate this option if you don't know
517 that you really want this behaviour.
518
519choice
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000520 prompt "Applets links"
521 default INSTALL_APPLET_SYMLINKS
522 help
523 Choose how you install applets links.
Mike Frysinger72d59db2006-03-10 23:17:17 +0000524
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000525config INSTALL_APPLET_SYMLINKS
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000526 bool "as soft-links"
527 help
528 Install applets as soft-links to the busybox binary. This needs some
529 free inodes on the filesystem, but might help with filesystem
530 generators that can't cope with hard-links.
Mike Frysinger72d59db2006-03-10 23:17:17 +0000531
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000532config INSTALL_APPLET_HARDLINKS
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000533 bool "as hard-links"
534 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000535 Install applets as hard-links to the busybox binary. This might
536 count on a filesystem with few inodes.
Mike Frysinger72d59db2006-03-10 23:17:17 +0000537
Denis Vlasenko737d1312007-08-25 18:25:24 +0000538config INSTALL_APPLET_SCRIPT_WRAPPERS
539 bool "as script wrappers"
540 help
541 Install applets as script wrappers that call the busybox binary.
542
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000543config INSTALL_APPLET_DONT
Mike Frysinger6cda8972007-01-24 09:32:42 +0000544 bool "not installed"
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000545 depends on FEATURE_INSTALLER || FEATURE_SH_STANDALONE || FEATURE_PREFER_APPLETS
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000546 help
547 Do not install applet links. Useful when using the -install feature
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000548 or a standalone shell for rescue purposes.
Mike Frysinger72d59db2006-03-10 23:17:17 +0000549
550endchoice
551
Denis Vlasenko737d1312007-08-25 18:25:24 +0000552choice
553 prompt "/bin/sh applet link"
554 default INSTALL_SH_APPLET_SYMLINK
555 depends on INSTALL_APPLET_SCRIPT_WRAPPERS
556 help
557 Choose how you install /bin/sh applet link.
558
559config INSTALL_SH_APPLET_SYMLINK
560 bool "as soft-link"
561 help
562 Install /bin/sh applet as soft-link to the busybox binary.
563
564config INSTALL_SH_APPLET_HARDLINK
565 bool "as hard-link"
566 help
567 Install /bin/sh applet as hard-link to the busybox binary.
568
569config INSTALL_SH_APPLET_SCRIPT_WRAPPER
570 bool "as script wrapper"
571 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000572 Install /bin/sh applet as script wrapper that call the busybox
573 binary.
Denis Vlasenko737d1312007-08-25 18:25:24 +0000574
575endchoice
576
Mike Frysinger72d59db2006-03-10 23:17:17 +0000577config PREFIX
578 string "BusyBox installation prefix"
579 default "./_install"
580 help
581 Define your directory to install BusyBox files/subdirs in.
582
583endmenu
584
585source libbb/Config.in
586
Rob Landley9dc69132006-03-13 02:52:23 +0000587endmenu
588
Mike Frysinger72d59db2006-03-10 23:17:17 +0000589comment "Applets"
590
591source archival/Config.in
592source coreutils/Config.in
593source console-tools/Config.in
594source debianutils/Config.in
595source editors/Config.in
596source findutils/Config.in
597source init/Config.in
598source loginutils/Config.in
599source e2fsprogs/Config.in
600source modutils/Config.in
601source util-linux/Config.in
602source miscutils/Config.in
603source networking/Config.in
Bernhard Reutner-Fischeraa2a1c02008-10-24 19:48:47 +0000604source printutils/Config.in
Denis Vlasenkob9d572a2008-11-06 23:41:38 +0000605source mailutils/Config.in
Mike Frysinger72d59db2006-03-10 23:17:17 +0000606source procps/Config.in
Denis Vlasenkofe544582006-10-03 15:57:40 +0000607source runit/Config.in
Denis Vlasenkod46d3c22007-02-06 19:28:50 +0000608source selinux/Config.in
Bernhard Reutner-Fischeraa2a1c02008-10-24 19:48:47 +0000609source shell/Config.in
610source sysklogd/Config.in