blob: b65fe4530ea702599730af08892e461feb879f3e [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"
Denys Vlasenkoba085c62010-07-21 08:58:11 +020018 default y
Denis Vlasenko97a8dd32006-10-01 15:55:11 +000019 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
Denys Vlasenkoa8df4c02009-10-19 18:56:26 +020033config INCLUDE_SUSv2
34 bool "Enable obsolete features removed before SUSv3"
35 default y
36 help
37 This option will enable backwards compatibility with SuSv2,
38 specifically, old-style numeric options ('command -1 <file>')
39 will be supported in head, tail, and fold. (Note: should
40 affect renice too.)
41
Denys Vlasenkoaa7da732009-09-13 14:57:24 +020042config USE_PORTABLE_CODE
43 bool "Avoid using GCC-specific code constructs"
44 default n
45 help
46 Use this option if you are trying to compile busybox with
47 compiler other than gcc.
48 If you do use gcc, this option may needlessly increase code size.
49
Jeremie Koenig1d7266d2010-07-19 00:44:56 +020050config PLATFORM_LINUX
51 bool "Enable Linux-specific applets and features"
52 default y
53 help
54 For the most part, busybox requires only POSIX compatibility
55 from the target system, but some applets and features use
56 Linux-specific interfaces.
57
58 Answering 'N' here will disable such applets and hide the
59 corresponding configuration options.
60
Eric Andersenc9f20d92002-12-05 08:41:41 +000061choice
62 prompt "Buffer allocation policy"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000063 default FEATURE_BUFFERS_USE_MALLOC
Eric Andersenc9f20d92002-12-05 08:41:41 +000064 help
Eric Andersen53601822002-12-05 21:12:42 +000065 There are 3 ways BusyBox can handle buffer allocations:
66 - Use malloc. This costs code size for the call to xmalloc.
67 - Put them on stack. For some very small machines with limited stack
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +000068 space, this can be deadly. For most folks, this works just fine.
Eric Andersen53601822002-12-05 21:12:42 +000069 - Put them in BSS. This works beautifully for computers with a real
70 MMU (and OS support), but wastes runtime RAM for uCLinux. This
71 behavior was the only one available for BusyBox versions 0.48 and
72 earlier.
Eric Andersenc9f20d92002-12-05 08:41:41 +000073
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000074config FEATURE_BUFFERS_USE_MALLOC
Eric Andersenc9f20d92002-12-05 08:41:41 +000075 bool "Allocate with Malloc"
76
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000077config FEATURE_BUFFERS_GO_ON_STACK
Eric Andersenc9f20d92002-12-05 08:41:41 +000078 bool "Allocate on the Stack"
79
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000080config FEATURE_BUFFERS_GO_IN_BSS
Eric Andersenc9f20d92002-12-05 08:41:41 +000081 bool "Allocate in the .bss section"
82
83endchoice
84
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000085config SHOW_USAGE
Bernhard Reutner-Fischer81901a02006-03-31 18:43:55 +000086 bool "Show terse applet usage messages"
87 default y
88 help
89 All BusyBox applets will show help messages when invoked with
90 wrong arguments. You can turn off printing these terse usage
91 messages if you say no here.
92 This will save you up to 7k.
93
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000094config FEATURE_VERBOSE_USAGE
Eric Andersenc9f20d92002-12-05 08:41:41 +000095 bool "Show verbose applet usage messages"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020096 default y
Denys Vlasenko0e5ba082010-06-05 23:11:07 +020097 depends on SHOW_USAGE
Eric Andersenc9f20d92002-12-05 08:41:41 +000098 help
Eric Andersen53601822002-12-05 21:12:42 +000099 All BusyBox applets will show more verbose help messages when
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000100 busybox is invoked with --help. This will add a lot of text to the
101 busybox binary. In the default configuration, this will add about
Eric Andersen53601822002-12-05 21:12:42 +0000102 13k, but it can add much more depending on your configuration.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000103
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000104config FEATURE_COMPRESS_USAGE
Rob Landley7e21d5f2006-04-27 23:34:46 +0000105 bool "Store applet usage messages in compressed form"
106 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000107 depends on SHOW_USAGE
Rob Landley7e21d5f2006-04-27 23:34:46 +0000108 help
109 Store usage messages in compressed form, uncompress them on-the-fly
110 when <applet> --help is called.
111
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000112 If you have a really tiny busybox with few applets enabled (and
113 bunzip2 isn't one of them), the overhead of the decompressor might
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000114 be noticeable. Also, if you run executables directly from ROM
115 and have very little memory, this might not be a win. Otherwise,
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000116 you probably want this.
117
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000118config FEATURE_INSTALLER
Eric Andersenc9f20d92002-12-05 08:41:41 +0000119 bool "Support --install [-s] to install applet links at runtime"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200120 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000121 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000122 Enable 'busybox --install [-s]' support. This will allow you to use
Eric Andersen53601822002-12-05 21:12:42 +0000123 busybox at runtime to create hard links or symlinks for all the
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000124 applets that are compiled into busybox.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000125
Denys Vlasenkod4d289a2010-10-12 04:18:05 +0200126config INSTALL_NO_USR
127 bool "Don't use /usr"
128 default n
Denys Vlasenkod4d289a2010-10-12 04:18:05 +0200129 help
Denys Vlasenkoc60e88a2010-12-05 23:11:15 +0100130 Disable use of /usr. busybox --install and "make install"
131 will install applets only to /bin and /sbin,
132 never to /usr/bin or /usr/sbin.
Denys Vlasenkod4d289a2010-10-12 04:18:05 +0200133
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000134config LOCALE_SUPPORT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000135 bool "Enable locale support (system needs locale for this to work)"
136 default n
137 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000138 Enable this if your system has locale support and you would like
Eric Andersen53601822002-12-05 21:12:42 +0000139 busybox to support locale settings.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000140
Denys Vlasenko19158a82010-03-26 14:06:56 +0100141config UNICODE_SUPPORT
Denys Vlasenko42a8fd02009-07-11 21:36:13 +0200142 bool "Support Unicode"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200143 default y
Denys Vlasenko42a8fd02009-07-11 21:36:13 +0200144 help
145 This makes various applets aware that one byte is not
146 one character on screen.
147
148 Busybox aims to eventually work correctly with Unicode displays.
149 Any older encodings are not guaranteed to work.
150 Probably by the time when busybox will be fully Unicode-clean,
151 other encodings will be mainly of historic interest.
152
Denys Vlasenko19158a82010-03-26 14:06:56 +0100153config UNICODE_USING_LOCALE
154 bool "Use libc routines for Unicode (else uses internal ones)"
155 default n
156 depends on UNICODE_SUPPORT && LOCALE_SUPPORT
157 help
158 With this option on, Unicode support is implemented using libc
159 routines. Otherwise, internal implementation is used.
Denys Vlasenko6ac37da2010-07-14 08:33:20 +0200160 Internal implementation is smaller.
Denys Vlasenko19158a82010-03-26 14:06:56 +0100161
Denys Vlasenko42a8fd02009-07-11 21:36:13 +0200162config FEATURE_CHECK_UNICODE_IN_ENV
163 bool "Check $LANG environment variable"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200164 default n
Denys Vlasenko19158a82010-03-26 14:06:56 +0100165 depends on UNICODE_SUPPORT && !UNICODE_USING_LOCALE
Denys Vlasenko42a8fd02009-07-11 21:36:13 +0200166 help
167 With this option on, Unicode support is activated
168 only if LANG variable has the value of the form "xxxx.utf8"
169
170 Otherwise, Unicode support will be always enabled and active.
171
Denys Vlasenko2edba212010-01-29 09:11:47 +0100172config SUBST_WCHAR
173 int "Character code to substitute unprintable characters with"
Denys Vlasenko19158a82010-03-26 14:06:56 +0100174 depends on UNICODE_SUPPORT
Denys Vlasenko2edba212010-01-29 09:11:47 +0100175 default 63
176 help
177 Typical values are 63 for '?' (works with any output device),
178 30 for ASCII substitute control code,
179 65533 (0xfffd) for Unicode replacement character.
180
181config LAST_SUPPORTED_WCHAR
182 int "Range of supported Unicode characters"
Denys Vlasenko19158a82010-03-26 14:06:56 +0100183 depends on UNICODE_SUPPORT
Denys Vlasenko2edba212010-01-29 09:11:47 +0100184 default 767
185 help
186 Any character with Unicode value bigger than this is assumed
187 to be non-printable on output device. Many applets replace
188 such chars with substitution character.
189
190 The idea is that many valid printable Unicode chars are
191 nevertheless are not displayed correctly. Think about
Denys Vlasenko460f8272010-01-31 18:12:57 +0100192 combining charachers, double-wide hieroglyphs, obscure
193 characters in dozens of ancient scripts...
194 Many terminals, terminal emulators, xterms etc will fail
195 to handle them correctly. Choose the smallest value
196 which suits your needs.
Denys Vlasenko2edba212010-01-29 09:11:47 +0100197
198 Typical values are:
199 126 - ASCII only
200 767 (0x2ff) - there are no combining chars in [0..767] range
201 (the range includes Latin 1, Latin Ext. A and B),
202 code is ~700 bytes smaller for this case.
203 4351 (0x10ff) - there are no double-wide chars in [0..4351] range,
204 code is ~300 bytes smaller for this case.
Denys Vlasenko460f8272010-01-31 18:12:57 +0100205 12799 (0x31ff) - nearly all non-ideographic characters are
206 available in [0..12799] range, including
207 East Asian scripts like katakana, hiragana, hangul,
208 bopomofo...
Denys Vlasenko2edba212010-01-29 09:11:47 +0100209 0 - off, any valid printable Unicode character will be printed.
210
211config UNICODE_COMBINING_WCHARS
212 bool "Allow zero-width Unicode characters on output"
213 default n
Denys Vlasenko19158a82010-03-26 14:06:56 +0100214 depends on UNICODE_SUPPORT
Denys Vlasenko2edba212010-01-29 09:11:47 +0100215 help
216 With this option off, any Unicode char with width of 0
217 is substituted on output.
218
219config UNICODE_WIDE_WCHARS
220 bool "Allow wide Unicode characters on output"
221 default n
Denys Vlasenko19158a82010-03-26 14:06:56 +0100222 depends on UNICODE_SUPPORT
Denys Vlasenko2edba212010-01-29 09:11:47 +0100223 help
224 With this option off, any Unicode char with width > 1
225 is substituted on output.
226
Tomas Heinrichc5c006c2010-03-18 18:35:37 +0100227config UNICODE_BIDI_SUPPORT
228 bool "Bidirectional character-aware line input"
Tomas Heinrichaa167552010-03-26 13:13:24 +0100229 default n
Denys Vlasenko19158a82010-03-26 14:06:56 +0100230 depends on UNICODE_SUPPORT && !UNICODE_USING_LOCALE
Tomas Heinrichc5c006c2010-03-18 18:35:37 +0100231 help
232 With this option on, right-to-left Unicode characters
233 are treated differently on input (e.g. cursor movement).
234
Tomas Heinrichaa167552010-03-26 13:13:24 +0100235config UNICODE_NEUTRAL_TABLE
236 bool "In bidi input, support non-ASCII neutral chars too"
237 default n
238 depends on UNICODE_BIDI_SUPPORT
239 help
240 In most cases it's enough to treat only ASCII non-letters
241 (i.e. punctuation, numbers and space) as characters
242 with neutral directionality.
243 With this option on, more extensive (and bigger) table
244 of neutral chars will be used.
245
Tomas Heinricha659b812010-04-29 13:43:39 +0200246config UNICODE_PRESERVE_BROKEN
247 bool "Make it possible to enter sequences of chars which are not Unicode"
248 default n
249 depends on UNICODE_SUPPORT
250 help
Denys Vlasenkoe0238f82011-05-14 15:23:55 +0200251 With this option on, on line-editing input (such as used by shells)
252 invalid UTF-8 bytes are not substituted with the selected
253 substitution character.
Tomas Heinricha659b812010-04-29 13:43:39 +0200254 For example, this means that entering 'l', 's', ' ', 0xff, [Enter]
255 at shell prompt will list file named 0xff (single char name
256 with char value 255), not file named '?'.
257
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200258config LONG_OPTS
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +0000259 bool "Support for --long-options"
Bernhard Reutner-Fischer74704192006-06-16 14:03:23 +0000260 default y
Denis Vlasenkoc61852a2006-11-29 11:09:43 +0000261 help
262 Enable this if you want busybox applets to use the gnu --long-option
263 style, in addition to single character -a -b -c style options.
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000264
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000265config FEATURE_DEVPTS
Eric Andersenc9f20d92002-12-05 08:41:41 +0000266 bool "Use the devpts filesystem for Unix98 PTYs"
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000267 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000268 help
Eric Andersen53601822002-12-05 21:12:42 +0000269 Enable if you want BusyBox to use Unix98 PTY support. If enabled,
270 busybox will use /dev/ptmx for the master side of the pseudoterminal
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000271 and /dev/pts/<number> for the slave side. Otherwise, BSD style
Eric Andersen53601822002-12-05 21:12:42 +0000272 /dev/ttyp<number> will be used. To use this option, you should have
Rob Landleyd5b9b602006-05-31 23:23:42 +0000273 devpts mounted.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000274
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000275config FEATURE_CLEAN_UP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000276 bool "Clean up all memory before exiting (usually not needed)"
277 default n
278 help
Rob Landley1ab4c3d2006-02-08 18:50:17 +0000279 As a size optimization, busybox normally exits without explicitly
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000280 freeing dynamically allocated memory or closing files. This saves
Rob Landley1ab4c3d2006-02-08 18:50:17 +0000281 space since the OS will clean up for us, but it can confuse debuggers
282 like valgrind, which report tons of memory and resource leaks.
283
284 Don't enable this unless you have a really good reason to clean
Eric Andersene5642112003-07-14 19:37:08 +0000285 things up manually.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000286
Denys Vlasenkod4d289a2010-10-12 04:18:05 +0200287config FEATURE_UTMP
288 bool "Support utmp file"
289 default y
290 help
291 The file /var/run/utmp is used to track who is currently logged in.
292 With this option on, certain applets (getty, login, telnetd etc)
293 will create and delete entries there.
294 "who" applet requires this option.
295
Denys Vlasenko8d0e0cd2011-01-25 23:21:46 +0100296config FEATURE_WTMP
297 bool "Support wtmp file"
298 default y
299 depends on FEATURE_UTMP
300 help
301 The file /var/run/wtmp is used to track when users have logged into
302 and logged out of the system.
303 With this option on, certain applets (getty, login, telnetd etc)
304 will append new entries there.
305 "last" applet requires this option.
306
Denis Vlasenko10457b92007-03-27 22:01:31 +0000307config FEATURE_PIDFILE
308 bool "Support writing pidfiles"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200309 default y
Denis Vlasenko10457b92007-03-27 22:01:31 +0000310 help
Denis Vlasenkobb23c062007-08-15 20:05:37 +0000311 This option makes some applets (e.g. crond, syslogd, inetd) write
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000312 a pidfile in /var/run. Some applications rely on them.
Denis Vlasenko10457b92007-03-27 22:01:31 +0000313
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000314config FEATURE_SUID
Eric Andersenc9f20d92002-12-05 08:41:41 +0000315 bool "Support for SUID/SGID handling"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200316 default y
Eric Andersenc9f20d92002-12-05 08:41:41 +0000317 help
Rob Landleyd5b9b602006-05-31 23:23:42 +0000318 With this option you can install the busybox binary belonging
Denys Vlasenkod4d289a2010-10-12 04:18:05 +0200319 to root with the suid bit set, enabling some applets to perform
320 root-level operations even when run by ordinary users
321 (for example, mounting of user mounts in fstab needs this).
322
323 Busybox will automatically drop priviledges for applets
324 that don't need root access.
Rob Landleyd5b9b602006-05-31 23:23:42 +0000325
Bernhard Reutner-Fischeraa2a1c02008-10-24 19:48:47 +0000326 If you are really paranoid and don't want to do this, build two
Rob Landleyd5b9b602006-05-31 23:23:42 +0000327 busybox binaries with different applets in them (and the appropriate
328 symlinks pointing to each binary), and only set the suid bit on the
Denys Vlasenkod4d289a2010-10-12 04:18:05 +0200329 one that needs it.
330
Denys Vlasenko3b5acaa2011-01-18 13:52:48 +0100331 The applets which require root rights (need suid bit or
332 to be run by root) and will refuse to execute otherwise:
333 crontab, login, passwd, su, vlock, wall.
Bernhard Reutner-Fischeraa2a1c02008-10-24 19:48:47 +0000334
Denys Vlasenko3b5acaa2011-01-18 13:52:48 +0100335 The applets which will use root rights if they have them
336 (via suid bit, or because run by root), but would try to work
337 without root right nevertheless:
338 findfs, ping[6], traceroute[6], mount.
339
340 Note that if you DONT select this option, but DO make busybox
341 suid root, ALL applets will run under root, which is a huge
342 security hole (think "cp /some/file /etc/passwd").
Eric Andersenc9f20d92002-12-05 08:41:41 +0000343
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000344config FEATURE_SUID_CONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000345 bool "Runtime SUID/SGID configuration via /etc/busybox.conf"
Denys Vlasenkoe0238f82011-05-14 15:23:55 +0200346 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000347 depends on FEATURE_SUID
Eric Andersenc9f20d92002-12-05 08:41:41 +0000348 help
Rob Landleyd5b9b602006-05-31 23:23:42 +0000349 Allow the SUID / SGID state of an applet to be determined at runtime
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000350 by checking /etc/busybox.conf. (This is sort of a poor man's sudo.)
Rob Landleyd5b9b602006-05-31 23:23:42 +0000351 The format of this file is as follows:
Eric Andersene5272072003-07-22 22:15:21 +0000352
Denys Vlasenko3770b6b2011-05-16 13:19:25 +0200353 APPLET = [Ssx-][Ssx-][x-] USER.GROUP
354
355 s: This user/group are allowed to execute APPLET.
356 APPLET will run under USER or GROUP.
357 x: User/group/others are allowed to execute APPLET.
358 No UID/GID change will be done when it is run.
359 S: This user/group are NOT allowed to execute APPLET.
360 APPLET will run under USER or GROUP.
361 -: User/group/others are not allowed to execute APPLET.
Eric Andersen5043ea12005-06-23 19:15:40 +0000362
Eric Andersene5272072003-07-22 22:15:21 +0000363 An example might help:
364
365 [SUID]
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000366 su = ssx root.0 # applet su can be run by anyone and runs with
367 # euid=0/egid=0
Eric Andersene5272072003-07-22 22:15:21 +0000368 su = ssx # exactly the same
369
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000370 mount = sx- root.disk # applet mount can be run by root and members
371 # of group disk and runs with euid=0
Eric Andersene5272072003-07-22 22:15:21 +0000372
373 cp = --- # disable applet cp for everyone
374
Rob Landleyfdc4c202005-04-29 19:48:29 +0000375 The file has to be owned by user root, group root and has to be
376 writeable only by root:
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000377 (chown 0.0 /etc/busybox.conf; chmod 600 /etc/busybox.conf)
Rob Landleyfdc4c202005-04-29 19:48:29 +0000378 The busybox executable has to be owned by user root, group
379 root and has to be setuid root for this to work:
Denis Vlasenko6cee58e2007-11-04 15:43:26 +0000380 (chown 0.0 /bin/busybox; chmod 4755 /bin/busybox)
Rob Landleyfdc4c202005-04-29 19:48:29 +0000381
Eric Andersene5272072003-07-22 22:15:21 +0000382 Robert 'sandman' Griebl has more information here:
383 <url: http://www.softforge.de/bb/suid.html >.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000384
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000385config FEATURE_SUID_CONFIG_QUIET
Eric Andersenc9f20d92002-12-05 08:41:41 +0000386 bool "Suppress warning message if /etc/busybox.conf is not readable"
Rob Landleyd5b9b602006-05-31 23:23:42 +0000387 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000388 depends on FEATURE_SUID_CONFIG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000389 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000390 /etc/busybox.conf should be readable by the user needing the SUID,
391 check this option to avoid users to be notified about missing
392 permissions.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000393
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000394config SELINUX
Eric Andersen9e480452003-07-03 10:07:04 +0000395 bool "Support NSA Security Enhanced Linux"
396 default n
Denys Vlasenkoe3b1a1f2011-02-26 22:24:08 +0100397 select PLATFORM_LINUX
Eric Andersen9e480452003-07-03 10:07:04 +0000398 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000399 Enable support for SELinux in applets ls, ps, and id. Also provide
Rob Landley24b0a952006-03-29 15:35:23 +0000400 the option of compiling in SELinux applets.
Eric Andersen9e480452003-07-03 10:07:04 +0000401
Rob Landley24b0a952006-03-29 15:35:23 +0000402 If you do not have a complete SELinux userland installed, this stuff
403 will not compile. Go visit
Eric Andersen31d898f2004-02-05 00:18:26 +0000404 http://www.nsa.gov/selinux/index.html
Rob Landley24b0a952006-03-29 15:35:23 +0000405 to download the necessary stuff to allow busybox to compile with
406 this option enabled. Specifially, libselinux 1.28 or better is
407 directly required by busybox. If the installation is located in a
408 non-standard directory, provide it by invoking make as follows:
409 CFLAGS=-I<libselinux-include-path> \
410 LDFLAGS=-L<libselinux-lib-path> \
411 make
Eric Andersen31d898f2004-02-05 00:18:26 +0000412
413 Most people will leave this set to 'N'.
414
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000415config FEATURE_PREFER_APPLETS
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000416 bool "exec prefers applets"
417 default n
418 help
419 This is an experimental option which directs applets about to
420 call 'exec' to try and find an applicable busybox applet before
Denis Vlasenko92c0b822007-05-08 17:27:17 +0000421 searching the PATH. This is typically done by exec'ing
422 /proc/self/exe.
423 This may affect shell, find -exec, xargs and similar applets.
424 They will use applets even if /bin/<applet> -> busybox link
425 is missing (or is not a link to busybox). However, this causes
426 problems in chroot jails without mounted /proc and with ps/top
427 (command name can be shown as 'exe' for applets started this way).
Denis Vlasenko2f0c0d02007-01-21 00:41:04 +0000428
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000429config BUSYBOX_EXEC_PATH
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000430 string "Path to BusyBox executable"
431 default "/proc/self/exe"
432 help
433 When Busybox applets need to run other busybox applets, BusyBox
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000434 sometimes needs to exec() itself. When the /proc filesystem is
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000435 mounted, /proc/self/exe always points to the currently running
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000436 executable. If you haven't got /proc, set this to wherever you
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000437 want to run BusyBox from.
438
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000439# These are auto-selected by other options
440
441config FEATURE_SYSLOG
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000442 bool #No description makes it a hidden option
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000443 default n
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000444 #help
445 # This option is auto-selected when you select any applet which may
446 # send its output to syslog. You do not need to select it manually.
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000447
448config FEATURE_HAVE_RPC
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000449 bool #No description makes it a hidden option
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000450 default n
Denis Vlasenko35a064b2008-11-06 00:49:59 +0000451 #help
452 # This is automatically selected if any of enabled applets need it.
453 # You do not need to select it manually.
Denis Vlasenkoa7825f22007-06-16 13:56:51 +0000454
Eric Andersenc9f20d92002-12-05 08:41:41 +0000455endmenu
456
457menu 'Build Options'
458
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000459config STATIC
Eric Andersenc9f20d92002-12-05 08:41:41 +0000460 bool "Build BusyBox as a static binary (no shared libs)"
461 default n
462 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000463 If you want to build a static BusyBox binary, which does not
464 use or require any shared libraries, then enable this option.
Eric Andersen88c916b2003-10-22 09:58:56 +0000465 This can cause BusyBox to be considerably larger, so you should
Eric Andersene5272072003-07-22 22:15:21 +0000466 leave this option false unless you have a good reason (i.e.
467 your target platform does not support shared libraries, or
468 you are building an initrd which doesn't need anything but
469 BusyBox, etc).
Eric Andersenc9f20d92002-12-05 08:41:41 +0000470
Eric Andersene5272072003-07-22 22:15:21 +0000471 Most people will leave this set to 'N'.
472
Denis Vlasenko1da86d22008-06-04 11:28:24 +0000473config PIE
474 bool "Build BusyBox as a position independent executable"
475 default n
476 depends on !STATIC
477 help
Gilles Espinasse26b80e82011-02-13 22:54:37 +0100478 Hardened code option. PIE binaries are loaded at a different
479 address at each invocation. This has some overhead,
480 particularly on x86-32 which is short on registers.
481
Denis Vlasenko1da86d22008-06-04 11:28:24 +0000482 Most people will leave this set to 'N'.
483
Denis Vlasenkod2c450c2008-01-08 20:32:12 +0000484config NOMMU
485 bool "Force NOMMU build"
486 default n
487 help
488 Busybox tries to detect whether architecture it is being
489 built against supports MMU or not. If this detection fails,
490 or if you want to build NOMMU version of busybox for testing,
491 you may force NOMMU build here.
492
493 Most people will leave this set to 'N'.
494
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000495# PIE can be made to work with BUILD_LIBBUSYBOX, but currently
496# build system does not support that
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000497config BUILD_LIBBUSYBOX
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000498 bool "Build shared libbusybox"
Rob Landleyc7ddefc2006-06-14 01:24:33 +0000499 default n
Denis Vlasenkofc5e8062008-07-09 21:24:18 +0000500 depends on !FEATURE_PREFER_APPLETS && !PIE && !STATIC
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000501 help
Denis Vlasenkod62fd842007-10-07 20:46:34 +0000502 Build a shared library libbusybox.so.N.N.N which contains all
503 busybox code.
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000504
Denis Vlasenkod62fd842007-10-07 20:46:34 +0000505 This feature allows every applet to be built as a tiny
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000506 separate executable. Enabling it for "one big busybox binary"
Denis Vlasenkod62fd842007-10-07 20:46:34 +0000507 approach serves no purpose and increases code size.
508 You should almost certainly say "no" to this.
Rob Landleyd6e50832006-06-15 15:04:53 +0000509
Denis Vlasenkodef88982007-10-07 17:06:01 +0000510### config FEATURE_FULL_LIBBUSYBOX
511### bool "Feature-complete libbusybox"
512### default n if !FEATURE_SHARED_BUSYBOX
513### depends on BUILD_LIBBUSYBOX
514### help
515### Build a libbusybox with the complete feature-set, disregarding
516### the actually selected config.
517###
518### Normally, libbusybox will only contain the features which are
519### used by busybox itself. If you plan to write a separate
520### standalone application which uses libbusybox say 'Y'.
521###
522### Note: libbusybox is GPL, not LGPL, and exports no stable API that
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000523### might act as a copyright barrier. We can and will modify the
Denis Vlasenkodef88982007-10-07 17:06:01 +0000524### exported function set between releases (even minor version number
525### changes), and happily break out-of-tree features.
526###
527### Say 'N' if in doubt.
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000528
Denis Vlasenkof545be02007-10-07 17:06:26 +0000529config FEATURE_INDIVIDUAL
530 bool "Produce a binary for each applet, linked against libbusybox"
531 default y
Denis Vlasenkofc5e8062008-07-09 21:24:18 +0000532 depends on BUILD_LIBBUSYBOX
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000533 help
Denis Vlasenkof545be02007-10-07 17:06:26 +0000534 If your CPU architecture doesn't allow for sharing text/rodata
535 sections of running binaries, but allows for runtime dynamic
536 libraries, this option will allow you to reduce memory footprint
537 when you have many different applets running at once.
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000538
Denis Vlasenkof545be02007-10-07 17:06:26 +0000539 If your CPU architecture allows for sharing text/rodata,
540 having single binary is more optimal.
541
542 Each applet will be a tiny program, dynamically linked
543 against libbusybox.so.N.N.N.
544
545 You need to have a working dynamic linker.
546
547config FEATURE_SHARED_BUSYBOX
548 bool "Produce additional busybox binary linked against libbusybox"
549 default y
Denis Vlasenkofc5e8062008-07-09 21:24:18 +0000550 depends on BUILD_LIBBUSYBOX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000551 help
Denis Vlasenkof545be02007-10-07 17:06:26 +0000552 Build busybox, dynamically linked against libbusybox.so.N.N.N.
553
554 You need to have a working dynamic linker.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000555
Denis Vlasenkodef88982007-10-07 17:06:01 +0000556### config BUILD_AT_ONCE
557### bool "Compile all sources at once"
558### default n
559### help
560### Normally each source-file is compiled with one invocation of
561### the compiler.
562### If you set this option, all sources are compiled at once.
563### This gives the compiler more opportunities to optimize which can
564### result in smaller and/or faster binaries.
565###
566### Setting this option will consume alot of memory, e.g. if you
567### enable all applets with all features, gcc uses more than 300MB
568### RAM during compilation of busybox.
569###
570### This option is most likely only beneficial for newer compilers
571### such as gcc-4.1 and above.
572###
573### Say 'N' unless you know what you are doing.
Bernhard Reutner-Fischer2aba3952006-01-24 16:14:14 +0000574
Denis Vlasenkof545be02007-10-07 17:06:26 +0000575config LFS
576 bool "Build with Large File Support (for accessing files > 2 GB)"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +0200577 default y
Denis Vlasenkof545be02007-10-07 17:06:26 +0000578 help
579 If you want to build BusyBox with large file support, then enable
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000580 this option. This will have no effect if your kernel or your C
581 library lacks large file support for large files. Some of the
Denis Vlasenkof545be02007-10-07 17:06:26 +0000582 programs that can benefit from large file support include dd, gzip,
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000583 cp, mount, tar, and many others. If you want to access files larger
584 than 2 Gigabytes, enable this option. Otherwise, leave it set to 'N'.
Denis Vlasenkof545be02007-10-07 17:06:26 +0000585
Denis Vlasenkob8e653b2008-06-02 04:51:29 +0000586config CROSS_COMPILER_PREFIX
587 string "Cross Compiler prefix"
588 default ""
589 help
590 If you want to build BusyBox with a cross compiler, then you
591 will need to set this to the cross-compiler prefix, for example,
Bernhard Reutner-Fischer7d0d3e22008-08-22 08:25:26 +0000592 "i386-uclibc-".
593
594 Note that CROSS_COMPILE environment variable or
595 "make CROSS_COMPILE=xxx ..." will override this selection.
596
597 Native builds leave this empty.
Denis Vlasenkob8e653b2008-06-02 04:51:29 +0000598
Bernhard Reutner-Fischerf6107c72009-01-22 13:27:14 +0000599config EXTRA_CFLAGS
600 string "Additional CFLAGS"
601 default ""
602 help
603 Additional CFLAGS to pass to the compiler verbatim.
604
Eric Andersenc9f20d92002-12-05 08:41:41 +0000605endmenu
606
Eric Andersenc9f20d92002-12-05 08:41:41 +0000607menu 'Debugging Options'
608
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000609config DEBUG
Rob Landleyc503df52006-05-09 22:08:56 +0000610 bool "Build BusyBox with extra Debugging symbols"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000611 default n
612 help
Rob Landleyc503df52006-05-09 22:08:56 +0000613 Say Y here if you wish to examine BusyBox internals while applets are
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000614 running. This increases the size of the binary considerably, and
615 should only be used when doing development. If you are doing
Rob Landleyc503df52006-05-09 22:08:56 +0000616 development and want to debug BusyBox, answer Y.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000617
Eric Andersenf086ed82004-05-25 11:30:22 +0000618 Most people should answer N.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000619
Denis Vlasenkobd8390a2008-06-12 20:23:03 +0000620config DEBUG_PESSIMIZE
Denis Vlasenkoc185e292008-07-16 23:45:11 +0000621 bool "Disable compiler optimizations"
Denis Vlasenkobd8390a2008-06-12 20:23:03 +0000622 default n
623 depends on DEBUG
624 help
625 The compiler's optimization of source code can eliminate and reorder
626 code, resulting in an executable that's hard to understand when
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000627 stepping through it with a debugger. This switches it off, resulting
Denis Vlasenkobd8390a2008-06-12 20:23:03 +0000628 in a much bigger executable that more closely matches the source
629 code.
630
Denis Vlasenkoe0eebc12007-01-27 13:44:53 +0000631config WERROR
632 bool "Abort compilation on any warning"
Rob Landleyc503df52006-05-09 22:08:56 +0000633 default n
Rob Landleyc503df52006-05-09 22:08:56 +0000634 help
Denis Vlasenkoe0eebc12007-01-27 13:44:53 +0000635 Selecting this will add -Werror to gcc command line.
636
637 Most people should answer N.
638
Eric Andersenf086ed82004-05-25 11:30:22 +0000639choice
640 prompt "Additional debugging library"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000641 default NO_DEBUG_LIB
Eric Andersenc9f20d92002-12-05 08:41:41 +0000642 help
Eric Andersenf086ed82004-05-25 11:30:22 +0000643 Using an additional debugging library will make BusyBox become
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000644 considerable larger and will cause it to run more slowly. You
Eric Andersenf086ed82004-05-25 11:30:22 +0000645 should always leave this option disabled for production use.
646
647 dmalloc support:
648 ----------------
Eric Andersenc9f20d92002-12-05 08:41:41 +0000649 This enables compiling with dmalloc ( http://dmalloc.com/ )
650 which is an excellent public domain mem leak and malloc problem
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000651 detector. To enable dmalloc, before running busybox you will
Eric Andersenc9f20d92002-12-05 08:41:41 +0000652 want to properly set your environment, for example:
653 export DMALLOC_OPTIONS=debug=0x34f47d83,inter=100,log=logfile
654 The 'debug=' value is generated using the following command
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000655 dmalloc -p log-stats -p log-non-free -p log-bad-space \
656 -p log-elapsed-time -p check-fence -p check-heap \
657 -p check-lists -p check-blank -p check-funcs -p realloc-copy \
658 -p allow-free-null
Eric Andersenc9f20d92002-12-05 08:41:41 +0000659
Eric Andersenf086ed82004-05-25 11:30:22 +0000660 Electric-fence support:
661 -----------------------
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000662 This enables compiling with Electric-fence support. Electric
Eric Andersen88c916b2003-10-22 09:58:56 +0000663 fence is another very useful malloc debugging library which uses
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000664 your computer's virtual memory hardware to detect illegal memory
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000665 accesses. This support will make BusyBox be considerable larger
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000666 and run slower, so you should leave this option disabled unless
Eric Andersenc9f20d92002-12-05 08:41:41 +0000667 you are hunting a hard to find memory problem.
668
Eric Andersenf086ed82004-05-25 11:30:22 +0000669
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000670config NO_DEBUG_LIB
Eric Andersenf086ed82004-05-25 11:30:22 +0000671 bool "None"
672
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000673config DMALLOC
Eric Andersenf086ed82004-05-25 11:30:22 +0000674 bool "Dmalloc"
675
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000676config EFENCE
Eric Andersenf086ed82004-05-25 11:30:22 +0000677 bool "Electric-fence"
678
679endchoice
680
Denis Vlasenko2d5bd802008-10-24 10:49:49 +0000681### config PARSE
Denys Vlasenko3581c622010-01-25 13:39:24 +0100682### bool "Uniform config file parser debugging applet: parse"
Denis Vlasenko2e157dd2008-07-19 09:27:19 +0000683
Eric Andersenc9f20d92002-12-05 08:41:41 +0000684endmenu
Mike Frysinger72d59db2006-03-10 23:17:17 +0000685
Denys Vlasenkod4d289a2010-10-12 04:18:05 +0200686menu 'Installation Options ("make install" behavior)'
Mike Frysinger72d59db2006-03-10 23:17:17 +0000687
688choice
Denys Vlasenkod4d289a2010-10-12 04:18:05 +0200689 prompt "What kind of applet links to install"
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000690 default INSTALL_APPLET_SYMLINKS
691 help
Denys Vlasenkod4d289a2010-10-12 04:18:05 +0200692 Choose what kind of links to applets are created by "make install".
Mike Frysinger72d59db2006-03-10 23:17:17 +0000693
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000694config INSTALL_APPLET_SYMLINKS
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000695 bool "as soft-links"
696 help
697 Install applets as soft-links to the busybox binary. This needs some
698 free inodes on the filesystem, but might help with filesystem
699 generators that can't cope with hard-links.
Mike Frysinger72d59db2006-03-10 23:17:17 +0000700
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000701config INSTALL_APPLET_HARDLINKS
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000702 bool "as hard-links"
703 help
Bernhard Reutner-Fischer3e8669f2008-07-22 18:27:53 +0000704 Install applets as hard-links to the busybox binary. This might
705 count on a filesystem with few inodes.
Mike Frysinger72d59db2006-03-10 23:17:17 +0000706
Denis Vlasenko737d1312007-08-25 18:25:24 +0000707config INSTALL_APPLET_SCRIPT_WRAPPERS
708 bool "as script wrappers"
709 help
710 Install applets as script wrappers that call the busybox binary.
711
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000712config INSTALL_APPLET_DONT
Mike Frysinger6cda8972007-01-24 09:32:42 +0000713 bool "not installed"
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000714 help
Denys Vlasenkod4d289a2010-10-12 04:18:05 +0200715 Do not install applet links. Useful when you plan to use
716 busybox --install for installing links, or plan to use
717 a standalone shell and thus don't need applet links.
Mike Frysinger72d59db2006-03-10 23:17:17 +0000718
719endchoice
720
Denis Vlasenko737d1312007-08-25 18:25:24 +0000721choice
722 prompt "/bin/sh applet link"
723 default INSTALL_SH_APPLET_SYMLINK
724 depends on INSTALL_APPLET_SCRIPT_WRAPPERS
725 help
726 Choose how you install /bin/sh applet link.
727
728config INSTALL_SH_APPLET_SYMLINK
729 bool "as soft-link"
730 help
731 Install /bin/sh applet as soft-link to the busybox binary.
732
733config INSTALL_SH_APPLET_HARDLINK
734 bool "as hard-link"
735 help
736 Install /bin/sh applet as hard-link to the busybox binary.
737
738config INSTALL_SH_APPLET_SCRIPT_WRAPPER
739 bool "as script wrapper"
740 help
Denys Vlasenkod4d289a2010-10-12 04:18:05 +0200741 Install /bin/sh applet as script wrapper that calls
742 the busybox binary.
Denis Vlasenko737d1312007-08-25 18:25:24 +0000743
744endchoice
745
Mike Frysinger72d59db2006-03-10 23:17:17 +0000746config PREFIX
747 string "BusyBox installation prefix"
748 default "./_install"
749 help
750 Define your directory to install BusyBox files/subdirs in.
751
752endmenu
753
754source libbb/Config.in
755
Rob Landley9dc69132006-03-13 02:52:23 +0000756endmenu
757
Mike Frysinger72d59db2006-03-10 23:17:17 +0000758comment "Applets"
759
760source archival/Config.in
761source coreutils/Config.in
762source console-tools/Config.in
763source debianutils/Config.in
764source editors/Config.in
765source findutils/Config.in
766source init/Config.in
767source loginutils/Config.in
768source e2fsprogs/Config.in
769source modutils/Config.in
770source util-linux/Config.in
771source miscutils/Config.in
772source networking/Config.in
Bernhard Reutner-Fischeraa2a1c02008-10-24 19:48:47 +0000773source printutils/Config.in
Denis Vlasenkob9d572a2008-11-06 23:41:38 +0000774source mailutils/Config.in
Mike Frysinger72d59db2006-03-10 23:17:17 +0000775source procps/Config.in
Denis Vlasenkofe544582006-10-03 15:57:40 +0000776source runit/Config.in
Denis Vlasenkod46d3c22007-02-06 19:28:50 +0000777source selinux/Config.in
Bernhard Reutner-Fischeraa2a1c02008-10-24 19:48:47 +0000778source shell/Config.in
779source sysklogd/Config.in