ath79: do not build TP-Link tiny images by default
[oweals/openwrt.git] / package / utils / busybox / config / Config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see docs/Kconfig-language.txt.
4 #
5
6
7 config BUSYBOX_CONFIG_HAVE_DOT_CONFIG
8         bool
9         default BUSYBOX_DEFAULT_HAVE_DOT_CONFIG
10
11 menu "Settings"
12
13 config BUSYBOX_CONFIG_DESKTOP
14         bool "Enable compatibility for full-blown desktop systems (8kb)"
15         default BUSYBOX_DEFAULT_DESKTOP
16         help
17         Enable applet options and features which are not essential.
18         Many applet options have dedicated config options to (de)select them
19         under that applet; this options enables those options which have no
20         individual config item for them.
21
22         Select this if you plan to use busybox on full-blown desktop machine
23         with common Linux distro, which needs higher level of command-line
24         compatibility.
25
26         If you are preparing your build to be used on an embedded box
27         where you have tighter control over the entire set of userspace
28         tools, you can unselect this option for smaller code size.
29
30 config BUSYBOX_CONFIG_EXTRA_COMPAT
31         bool "Provide compatible behavior for rare corner cases (bigger code)"
32         default BUSYBOX_DEFAULT_EXTRA_COMPAT
33         help
34         This option makes grep, sed etc handle rare corner cases
35         (embedded NUL bytes and such). This makes code bigger and uses
36         some GNU extensions in libc. You probably only need this option
37         if you plan to run busybox on desktop.
38
39 config BUSYBOX_CONFIG_FEDORA_COMPAT
40         bool "Building for Fedora distribution"
41         default BUSYBOX_DEFAULT_FEDORA_COMPAT
42         help
43         This option makes some tools behave like they do on Fedora.
44
45         At the time of this writing (2017-08) this only affects uname:
46         normally, uname -p (processor) and uname -i (platform)
47         are shown as "unknown", but with this option uname -p
48         shows the same string as uname -m (machine type),
49         and so does uname -i unless machine type is i486/i586/i686 -
50         then uname -i shows "i386".
51
52 config BUSYBOX_CONFIG_INCLUDE_SUSv2
53         bool "Enable obsolete features removed before SUSv3"
54         default BUSYBOX_DEFAULT_INCLUDE_SUSv2
55         help
56         This option will enable backwards compatibility with SuSv2,
57         specifically, old-style numeric options ('command -1 <file>')
58         will be supported in head, tail, and fold. (Note: should
59         affect renice too.)
60
61 config BUSYBOX_CONFIG_LONG_OPTS
62         bool "Support --long-options"
63         default BUSYBOX_DEFAULT_LONG_OPTS
64         help
65         Enable this if you want busybox applets to use the gnu --long-option
66         style, in addition to single character -a -b -c style options.
67
68 config BUSYBOX_CONFIG_SHOW_USAGE
69         bool "Show applet usage messages"
70         default BUSYBOX_DEFAULT_SHOW_USAGE
71         help
72         Enabling this option, applets will show terse help messages
73         when invoked with wrong arguments.
74         If you do not want to show any (helpful) usage message when
75         issuing wrong command syntax, you can say 'N' here,
76         saving approximately 7k.
77
78 config BUSYBOX_CONFIG_FEATURE_VERBOSE_USAGE
79         bool "Show verbose applet usage messages"
80         default BUSYBOX_DEFAULT_FEATURE_VERBOSE_USAGE
81         depends on BUSYBOX_CONFIG_SHOW_USAGE
82         help
83         All applets will show verbose help messages when invoked with --help.
84         This will add a lot of text to the binary.
85
86 config BUSYBOX_CONFIG_FEATURE_COMPRESS_USAGE
87         bool "Store applet usage messages in compressed form"
88         default BUSYBOX_DEFAULT_FEATURE_COMPRESS_USAGE
89         depends on BUSYBOX_CONFIG_SHOW_USAGE
90         help
91         Store usage messages in .bz2 compressed form, uncompress them
92         on-the-fly when "APPLET --help" is run.
93
94         If you have a really tiny busybox with few applets enabled (and
95         bunzip2 isn't one of them), the overhead of the decompressor might
96         be noticeable. Also, if you run executables directly from ROM
97         and have very little memory, this might not be a win. Otherwise,
98         you probably want this.
99
100 config BUSYBOX_CONFIG_LFS
101         bool
102         default BUSYBOX_DEFAULT_LFS
103         help
104         If you need to work with large files, enable this option.
105         This will have no effect if your kernel or your C
106         library lacks large file support for large files. Some of the
107         programs that can benefit from large file support include dd, gzip,
108         cp, mount, tar.
109
110 config BUSYBOX_CONFIG_PAM
111         bool "Support PAM (Pluggable Authentication Modules)"
112         default BUSYBOX_DEFAULT_PAM
113         help
114         Use PAM in some applets (currently login and httpd) instead
115         of direct access to password database.
116
117 config BUSYBOX_CONFIG_FEATURE_DEVPTS
118         bool "Use the devpts filesystem for Unix98 PTYs"
119         default BUSYBOX_DEFAULT_FEATURE_DEVPTS
120         help
121         Enable if you want to use Unix98 PTY support. If enabled,
122         busybox will use /dev/ptmx for the master side of the pseudoterminal
123         and /dev/pts/<number> for the slave side. Otherwise, BSD style
124         /dev/ttyp<number> will be used. To use this option, you should have
125         devpts mounted.
126
127 config BUSYBOX_CONFIG_FEATURE_UTMP
128         bool "Support utmp file"
129         default BUSYBOX_DEFAULT_FEATURE_UTMP
130         help
131         The file /var/run/utmp is used to track who is currently logged in.
132         With this option on, certain applets (getty, login, telnetd etc)
133         will create and delete entries there.
134         "who" applet requires this option.
135
136 config BUSYBOX_CONFIG_FEATURE_WTMP
137         bool "Support wtmp file"
138         default BUSYBOX_DEFAULT_FEATURE_WTMP
139         depends on BUSYBOX_CONFIG_FEATURE_UTMP
140         help
141         The file /var/run/wtmp is used to track when users have logged into
142         and logged out of the system.
143         With this option on, certain applets (getty, login, telnetd etc)
144         will append new entries there.
145         "last" applet requires this option.
146
147 config BUSYBOX_CONFIG_FEATURE_PIDFILE
148         bool "Support writing pidfiles"
149         default BUSYBOX_DEFAULT_FEATURE_PIDFILE
150         help
151         This option makes some applets (e.g. crond, syslogd, inetd) write
152         a pidfile at the configured PID_FILE_PATH.  It has no effect
153         on applets which require pidfiles to run.
154
155 config BUSYBOX_CONFIG_PID_FILE_PATH
156         string "Directory for pidfiles"
157         default BUSYBOX_DEFAULT_PID_FILE_PATH
158         depends on BUSYBOX_CONFIG_FEATURE_PIDFILE
159         help
160         This is the default path where pidfiles are created.  Applets which
161         allow you to set the pidfile path on the command line will override
162         this value.  The option has no effect on applets that require you to
163         specify a pidfile path.
164
165 config BUSYBOX_CONFIG_BUSYBOX
166         bool "Include busybox applet"
167         default BUSYBOX_DEFAULT_BUSYBOX
168         help
169         The busybox applet provides general help message and allows
170         the included applets to be listed.  It also provides
171         optional --install command to create applet links. If you unselect
172         this option, running busybox without any arguments will give
173         just a cryptic error message:
174
175         $ busybox
176         busybox: applet not found
177
178         Running "busybox APPLET [ARGS...]" will still work, of course.
179
180 config BUSYBOX_CONFIG_FEATURE_SHOW_SCRIPT
181         bool "Support --show SCRIPT"
182         default BUSYBOX_DEFAULT_FEATURE_SHOW_SCRIPT
183         depends on BUSYBOX_CONFIG_BUSYBOX
184
185 config BUSYBOX_CONFIG_FEATURE_INSTALLER
186         bool "Support --install [-s] to install applet links at runtime"
187         default BUSYBOX_DEFAULT_FEATURE_INSTALLER
188         depends on BUSYBOX_CONFIG_BUSYBOX
189         help
190         Enable 'busybox --install [-s]' support. This will allow you to use
191         busybox at runtime to create hard links or symlinks for all the
192         applets that are compiled into busybox.
193
194 config BUSYBOX_CONFIG_INSTALL_NO_USR
195         bool "Don't use /usr"
196         default BUSYBOX_DEFAULT_INSTALL_NO_USR
197         help
198         Disable use of /usr. "busybox --install" and "make install"
199         will install applets only to /bin and /sbin,
200         never to /usr/bin or /usr/sbin.
201
202 config BUSYBOX_CONFIG_FEATURE_SUID
203         bool "Drop SUID state for most applets"
204         default BUSYBOX_DEFAULT_FEATURE_SUID
205         help
206         With this option you can install the busybox binary belonging
207         to root with the suid bit set, enabling some applets to perform
208         root-level operations even when run by ordinary users
209         (for example, mounting of user mounts in fstab needs this).
210
211         With this option enabled, busybox drops privileges for applets
212         that don't need root access, before entering their main() function.
213
214         If you are really paranoid and don't want even initial busybox code
215         to run under root for every applet, build two busybox binaries with
216         different applets in them (and the appropriate symlinks pointing
217         to each binary), and only set the suid bit on the one that needs it.
218
219         Some applets which require root rights (need suid bit on the binary
220         or to be run by root) and will refuse to execute otherwise:
221         crontab, login, passwd, su, vlock, wall.
222
223         The applets which will use root rights if they have them
224         (via suid bit, or because run by root), but would try to work
225         without root right nevertheless:
226         findfs, ping[6], traceroute[6], mount.
227
228         Note that if you DO NOT select this option, but DO make busybox
229         suid root, ALL applets will run under root, which is a huge
230         security hole (think "cp /some/file /etc/passwd").
231
232 config BUSYBOX_CONFIG_FEATURE_SUID_CONFIG
233         bool "Enable SUID configuration via /etc/busybox.conf"
234         default BUSYBOX_DEFAULT_FEATURE_SUID_CONFIG
235         depends on BUSYBOX_CONFIG_FEATURE_SUID
236         help
237         Allow the SUID/SGID state of an applet to be determined at runtime
238         by checking /etc/busybox.conf. (This is sort of a poor man's sudo.)
239         The format of this file is as follows:
240
241         APPLET = [Ssx-][Ssx-][x-] [USER.GROUP]
242
243         s: USER or GROUP is allowed to execute APPLET.
244            APPLET will run under USER or GROUP
245            (regardless of who's running it).
246         S: USER or GROUP is NOT allowed to execute APPLET.
247            APPLET will run under USER or GROUP.
248            This option is not very sensical.
249         x: USER/GROUP/others are allowed to execute APPLET.
250            No UID/GID change will be done when it is run.
251         -: USER/GROUP/others are not allowed to execute APPLET.
252
253         An example might help:
254
255         |[SUID]
256         |su = ssx root.0 # applet su can be run by anyone and runs with
257         |                # euid=0,egid=0
258         |su = ssx        # exactly the same
259         |
260         |mount = sx- root.disk # applet mount can be run by root and members
261         |                      # of group disk (but not anyone else)
262         |                      # and runs with euid=0 (egid is not changed)
263         |
264         |cp = --- # disable applet cp for everyone
265
266         The file has to be owned by user root, group root and has to be
267         writeable only by root:
268                 (chown 0.0 /etc/busybox.conf; chmod 600 /etc/busybox.conf)
269         The busybox executable has to be owned by user root, group
270         root and has to be setuid root for this to work:
271                 (chown 0.0 /bin/busybox; chmod 4755 /bin/busybox)
272
273         Robert 'sandman' Griebl has more information here:
274         <url: http://www.softforge.de/bb/suid.html >.
275
276 config BUSYBOX_CONFIG_FEATURE_SUID_CONFIG_QUIET
277         bool "Suppress warning message if /etc/busybox.conf is not readable"
278         default BUSYBOX_DEFAULT_FEATURE_SUID_CONFIG_QUIET
279         depends on BUSYBOX_CONFIG_FEATURE_SUID_CONFIG
280         help
281         /etc/busybox.conf should be readable by the user needing the SUID,
282         check this option to avoid users to be notified about missing
283         permissions.
284
285 config BUSYBOX_CONFIG_FEATURE_PREFER_APPLETS
286         bool "exec prefers applets"
287         default BUSYBOX_DEFAULT_FEATURE_PREFER_APPLETS
288         help
289         This is an experimental option which directs applets about to
290         call 'exec' to try and find an applicable busybox applet before
291         searching the PATH. This is typically done by exec'ing
292         /proc/self/exe.
293
294         This may affect shell, find -exec, xargs and similar applets.
295         They will use applets even if /bin/APPLET -> busybox link
296         is missing (or is not a link to busybox). However, this causes
297         problems in chroot jails without mounted /proc and with ps/top
298         (command name can be shown as 'exe' for applets started this way).
299
300 config BUSYBOX_CONFIG_BUSYBOX_EXEC_PATH
301         string "Path to busybox executable"
302         default BUSYBOX_DEFAULT_BUSYBOX_EXEC_PATH
303         help
304         When applets need to run other applets, busybox
305         sometimes needs to exec() itself. When the /proc filesystem is
306         mounted, /proc/self/exe always points to the currently running
307         executable. If you haven't got /proc, set this to wherever you
308         want to run busybox from.
309
310 config BUSYBOX_CONFIG_SELINUX
311         bool "Support NSA Security Enhanced Linux"
312         default BUSYBOX_DEFAULT_SELINUX
313         select BUSYBOX_CONFIG_PLATFORM_LINUX
314         help
315         Enable support for SELinux in applets ls, ps, and id. Also provide
316         the option of compiling in SELinux applets.
317
318         If you do not have a complete SELinux userland installed, this stuff
319         will not compile.  Specifially, libselinux 1.28 or better is
320         directly required by busybox. If the installation is located in a
321         non-standard directory, provide it by invoking make as follows:
322
323                 CFLAGS=-I<libselinux-include-path> \
324                 LDFLAGS=-L<libselinux-lib-path> \
325                 make
326
327         Most people will leave this set to 'N'.
328
329 config BUSYBOX_CONFIG_FEATURE_CLEAN_UP
330         bool "Clean up all memory before exiting (usually not needed)"
331         default BUSYBOX_DEFAULT_FEATURE_CLEAN_UP
332         help
333         As a size optimization, busybox normally exits without explicitly
334         freeing dynamically allocated memory or closing files. This saves
335         space since the OS will clean up for us, but it can confuse debuggers
336         like valgrind, which report tons of memory and resource leaks.
337
338         Don't enable this unless you have a really good reason to clean
339         things up manually.
340
341 config BUSYBOX_CONFIG_FEATURE_SYSLOG_INFO
342         bool "Support LOG_INFO level syslog messages"
343         default BUSYBOX_DEFAULT_FEATURE_SYSLOG_INFO
344         depends on BUSYBOX_CONFIG_FEATURE_SYSLOG
345         help
346         Applets which send their output to syslog use either LOG_INFO or
347         LOG_ERR log levels, but by disabling this option all messages will
348         be logged at the LOG_ERR level, saving just under 200 bytes.
349
350 # These are auto-selected by other options
351
352 config BUSYBOX_CONFIG_FEATURE_SYSLOG
353         bool #No description makes it a hidden option
354         default BUSYBOX_DEFAULT_FEATURE_SYSLOG
355         #help
356         #This option is auto-selected when you select any applet which may
357         #send its output to syslog. You do not need to select it manually.
358
359 config BUSYBOX_CONFIG_PLATFORM_LINUX
360         bool #No description makes it a hidden option
361         default BUSYBOX_DEFAULT_PLATFORM_LINUX
362         #help
363         #For the most part, busybox requires only POSIX compatibility
364         #from the target system, but some applets and features use
365         #Linux-specific interfaces.
366         #
367         #This is automatically selected if any applet or feature requires
368         #Linux-specific interfaces. You do not need to select it manually.
369
370 comment 'Build Options'
371
372 config BUSYBOX_CONFIG_STATIC
373         bool "Build static binary (no shared libs)"
374         default BUSYBOX_DEFAULT_STATIC
375         help
376         If you want to build a static binary, which does not use
377         or require any shared libraries, enable this option.
378         Static binaries are larger, but do not require functioning
379         dynamic libraries to be present, which is important if used
380         as a system rescue tool.
381
382 config BUSYBOX_CONFIG_PIE
383         bool "Build position independent executable"
384         default BUSYBOX_DEFAULT_PIE
385         depends on !BUSYBOX_CONFIG_STATIC
386         help
387         Hardened code option. PIE binaries are loaded at a different
388         address at each invocation. This has some overhead,
389         particularly on x86-32 which is short on registers.
390
391         Most people will leave this set to 'N'.
392
393 config BUSYBOX_CONFIG_NOMMU
394         bool "Force NOMMU build"
395         default BUSYBOX_DEFAULT_NOMMU
396         help
397         Busybox tries to detect whether architecture it is being
398         built against supports MMU or not. If this detection fails,
399         or if you want to build NOMMU version of busybox for testing,
400         you may force NOMMU build here.
401
402         Most people will leave this set to 'N'.
403
404 # PIE can be made to work with BUILD_LIBBUSYBOX, but currently
405 # build system does not support that
406 config BUSYBOX_CONFIG_BUILD_LIBBUSYBOX
407         bool "Build shared libbusybox"
408         default BUSYBOX_DEFAULT_BUILD_LIBBUSYBOX
409         depends on !BUSYBOX_CONFIG_FEATURE_PREFER_APPLETS && !BUSYBOX_CONFIG_PIE && !BUSYBOX_CONFIG_STATIC
410         help
411         Build a shared library libbusybox.so.N.N.N which contains all
412         busybox code.
413
414         This feature allows every applet to be built as a really tiny
415         separate executable linked against the library:
416         |$ size 0_lib/l*
417         |    text  data   bss     dec    hex filename
418         |     939   212    28    1179    49b 0_lib/last
419         |     939   212    28    1179    49b 0_lib/less
420         |  919138  8328  1556  929022  e2cfe 0_lib/libbusybox.so.1.N.M
421
422         This is useful on NOMMU systems which are not capable
423         of sharing executables, but are capable of sharing code
424         in dynamic libraries.
425
426 config BUSYBOX_CONFIG_FEATURE_LIBBUSYBOX_STATIC
427         bool "Pull in all external references into libbusybox"
428         default BUSYBOX_DEFAULT_FEATURE_LIBBUSYBOX_STATIC
429         depends on BUSYBOX_CONFIG_BUILD_LIBBUSYBOX
430         help
431         Make libbusybox library independent, not using or requiring
432         any other shared libraries.
433
434 config BUSYBOX_CONFIG_FEATURE_INDIVIDUAL
435         bool "Produce a binary for each applet, linked against libbusybox"
436         default BUSYBOX_DEFAULT_FEATURE_INDIVIDUAL
437         depends on BUSYBOX_CONFIG_BUILD_LIBBUSYBOX
438         help
439         If your CPU architecture doesn't allow for sharing text/rodata
440         sections of running binaries, but allows for runtime dynamic
441         libraries, this option will allow you to reduce memory footprint
442         when you have many different applets running at once.
443
444         If your CPU architecture allows for sharing text/rodata,
445         having single binary is more optimal.
446
447         Each applet will be a tiny program, dynamically linked
448         against libbusybox.so.N.N.N.
449
450         You need to have a working dynamic linker.
451
452 config BUSYBOX_CONFIG_FEATURE_SHARED_BUSYBOX
453         bool "Produce additional busybox binary linked against libbusybox"
454         default BUSYBOX_DEFAULT_FEATURE_SHARED_BUSYBOX
455         depends on BUSYBOX_CONFIG_BUILD_LIBBUSYBOX
456         help
457         Build busybox, dynamically linked against libbusybox.so.N.N.N.
458
459         You need to have a working dynamic linker.
460
461 ### config BUILD_AT_ONCE
462 ###     bool "Compile all sources at once"
463 ###     default n
464 ###     help
465 ###     Normally each source-file is compiled with one invocation of
466 ###     the compiler.
467 ###     If you set this option, all sources are compiled at once.
468 ###     This gives the compiler more opportunities to optimize which can
469 ###     result in smaller and/or faster binaries.
470 ###
471 ###     Setting this option will consume alot of memory, e.g. if you
472 ###     enable all applets with all features, gcc uses more than 300MB
473 ###     RAM during compilation of busybox.
474 ###
475 ###     This option is most likely only beneficial for newer compilers
476 ###     such as gcc-4.1 and above.
477 ###
478 ###     Say 'N' unless you know what you are doing.
479
480 config BUSYBOX_CONFIG_CROSS_COMPILER_PREFIX
481         string "Cross compiler prefix"
482         default BUSYBOX_DEFAULT_CROSS_COMPILER_PREFIX
483         help
484         If you want to build busybox with a cross compiler, then you
485         will need to set this to the cross-compiler prefix, for example,
486         "i386-uclibc-".
487
488         Note that CROSS_COMPILE environment variable or
489         "make CROSS_COMPILE=xxx ..." will override this selection.
490
491         Native builds leave this empty.
492
493 config BUSYBOX_CONFIG_SYSROOT
494         string "Path to sysroot"
495         default BUSYBOX_DEFAULT_SYSROOT
496         help
497         If you want to build busybox with a cross compiler, then you
498         might also need to specify where /usr/include and /usr/lib
499         will be found.
500
501         For example, busybox can be built against an installed
502         Android NDK, platform version 9, for ARM ABI with
503
504         CONFIG_SYSROOT=/opt/android-ndk/platforms/android-9/arch-arm
505
506         Native builds leave this empty.
507
508 config BUSYBOX_CONFIG_EXTRA_CFLAGS
509         string "Additional CFLAGS"
510         default BUSYBOX_DEFAULT_EXTRA_CFLAGS
511         help
512         Additional CFLAGS to pass to the compiler verbatim.
513
514 config BUSYBOX_CONFIG_EXTRA_LDFLAGS
515         string "Additional LDFLAGS"
516         default BUSYBOX_DEFAULT_EXTRA_LDFLAGS
517         help
518         Additional LDFLAGS to pass to the linker verbatim.
519
520 config BUSYBOX_CONFIG_EXTRA_LDLIBS
521         string "Additional LDLIBS"
522         default BUSYBOX_DEFAULT_EXTRA_LDLIBS
523         help
524         Additional LDLIBS to pass to the linker with -l.
525
526 config BUSYBOX_CONFIG_USE_PORTABLE_CODE
527         bool "Avoid using GCC-specific code constructs"
528         default BUSYBOX_DEFAULT_USE_PORTABLE_CODE
529         help
530         Use this option if you are trying to compile busybox with
531         compiler other than gcc.
532         If you do use gcc, this option may needlessly increase code size.
533
534 config BUSYBOX_CONFIG_STACK_OPTIMIZATION_386
535         bool "Use -mpreferred-stack-boundary=2 on i386 arch"
536         default BUSYBOX_DEFAULT_STACK_OPTIMIZATION_386
537         help
538         This option makes for smaller code, but some libc versions
539         do not work with it (they use SSE instructions without
540         ensuring stack alignment).
541
542 comment 'Installation Options ("make install" behavior)'
543
544 choice
545         prompt "What kind of applet links to install"
546         default BUSYBOX_CONFIG_INSTALL_APPLET_SYMLINKS
547         help
548         Choose what kind of links to applets are created by "make install".
549
550 config BUSYBOX_CONFIG_INSTALL_APPLET_SYMLINKS
551         bool "as soft-links"
552         help
553         Install applets as soft-links to the busybox binary. This needs some
554         free inodes on the filesystem, but might help with filesystem
555         generators that can't cope with hard-links.
556
557 config BUSYBOX_CONFIG_INSTALL_APPLET_HARDLINKS
558         bool "as hard-links"
559         help
560         Install applets as hard-links to the busybox binary. This might
561         count on a filesystem with few inodes.
562
563 config BUSYBOX_CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS
564         bool "as script wrappers"
565         help
566         Install applets as script wrappers that call the busybox binary.
567
568 config BUSYBOX_CONFIG_INSTALL_APPLET_DONT
569         bool "not installed"
570         help
571         Do not install applet links. Useful when you plan to use
572         busybox --install for installing links, or plan to use
573         a standalone shell and thus don't need applet links.
574
575 endchoice
576
577 choice
578         prompt "/bin/sh applet link"
579         default BUSYBOX_CONFIG_INSTALL_SH_APPLET_SYMLINK
580         depends on BUSYBOX_CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS
581         help
582         Choose how you install /bin/sh applet link.
583
584 config BUSYBOX_CONFIG_INSTALL_SH_APPLET_SYMLINK
585         bool "as soft-link"
586         help
587         Install /bin/sh applet as soft-link to the busybox binary.
588
589 config BUSYBOX_CONFIG_INSTALL_SH_APPLET_HARDLINK
590         bool "as hard-link"
591         help
592         Install /bin/sh applet as hard-link to the busybox binary.
593
594 config BUSYBOX_CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER
595         bool "as script wrapper"
596         help
597         Install /bin/sh applet as script wrapper that calls
598         the busybox binary.
599
600 endchoice
601
602 config BUSYBOX_CONFIG_PREFIX
603         string "Destination path for 'make install'"
604         default BUSYBOX_DEFAULT_PREFIX
605         help
606         Where "make install" should install busybox binary and links.
607
608 comment 'Debugging Options'
609
610 config BUSYBOX_CONFIG_DEBUG
611         bool "Build with debug information"
612         default BUSYBOX_DEFAULT_DEBUG
613         help
614         Say Y here to compile with debug information.
615         This increases the size of the binary considerably, and
616         should only be used when doing development.
617
618         This adds -g option to gcc command line.
619
620         Most people should answer N.
621
622 config BUSYBOX_CONFIG_DEBUG_PESSIMIZE
623         bool "Disable compiler optimizations"
624         default BUSYBOX_DEFAULT_DEBUG_PESSIMIZE
625         depends on BUSYBOX_CONFIG_DEBUG
626         help
627         The compiler's optimization of source code can eliminate and reorder
628         code, resulting in an executable that's hard to understand when
629         stepping through it with a debugger. This switches it off, resulting
630         in a much bigger executable that more closely matches the source
631         code.
632
633         This replaces -Os/-O2 with -O0 in gcc command line.
634
635 config BUSYBOX_CONFIG_DEBUG_SANITIZE
636         bool "Enable runtime sanitizers (ASAN/LSAN/USAN/etc...)"
637         default BUSYBOX_DEFAULT_DEBUG_SANITIZE
638         help
639         Say Y here if you want to enable runtime sanitizers. These help
640         catch bad memory accesses (e.g. buffer overflows), but will make
641         the executable larger and slow down runtime a bit.
642
643         This adds -fsanitize=foo options to gcc command line.
644
645         If you aren't developing/testing busybox, say N here.
646
647 config BUSYBOX_CONFIG_UNIT_TEST
648         bool "Build unit tests"
649         default BUSYBOX_DEFAULT_UNIT_TEST
650         help
651         Say Y here if you want to build unit tests (both the framework and
652         test cases) as an applet. This results in bigger code, so you
653         probably don't want this option in production builds.
654
655 config BUSYBOX_CONFIG_WERROR
656         bool "Abort compilation on any warning"
657         default BUSYBOX_DEFAULT_WERROR
658         help
659         This adds -Werror to gcc command line.
660
661         Most people should answer N.
662
663 choice
664         prompt "Additional debugging library"
665         default BUSYBOX_CONFIG_NO_DEBUG_LIB
666         help
667         Using an additional debugging library will make busybox become
668         considerably larger and will cause it to run more slowly. You
669         should always leave this option disabled for production use.
670
671         dmalloc support:
672         ----------------
673         This enables compiling with dmalloc ( http://dmalloc.com/ )
674         which is an excellent public domain mem leak and malloc problem
675         detector. To enable dmalloc, before running busybox you will
676         want to properly set your environment, for example:
677                 export DMALLOC_OPTIONS=debug=0x34f47d83,inter=100,log=logfile
678         The 'debug=' value is generated using the following command
679         dmalloc -p log-stats -p log-non-free -p log-bad-space \
680                 -p log-elapsed-time -p check-fence -p check-heap \
681                 -p check-lists -p check-blank -p check-funcs -p realloc-copy \
682                 -p allow-free-null
683
684         Electric-fence support:
685         -----------------------
686         This enables compiling with Electric-fence support. Electric
687         fence is another very useful malloc debugging library which uses
688         your computer's virtual memory hardware to detect illegal memory
689         accesses. This support will make busybox be considerably larger
690         and run slower, so you should leave this option disabled unless
691         you are hunting a hard to find memory problem.
692
693
694 config BUSYBOX_CONFIG_NO_DEBUG_LIB
695         bool "None"
696
697 config BUSYBOX_CONFIG_DMALLOC
698         bool "Dmalloc"
699
700 config BUSYBOX_CONFIG_EFENCE
701         bool "Electric-fence"
702
703 endchoice
704
705 source "libbb/Config.in"
706
707 endmenu
708
709 comment "Applets"
710
711 source "archival/Config.in"
712 source "coreutils/Config.in"
713 source "console-tools/Config.in"
714 source "debianutils/Config.in"
715 source "klibc-utils/Config.in"
716 source "editors/Config.in"
717 source "findutils/Config.in"
718 source "init/Config.in"
719 source "loginutils/Config.in"
720 source "e2fsprogs/Config.in"
721 source "modutils/Config.in"
722 source "util-linux/Config.in"
723 source "miscutils/Config.in"
724 source "networking/Config.in"
725 source "printutils/Config.in"
726 source "mailutils/Config.in"
727 source "procps/Config.in"
728 source "runit/Config.in"
729 source "selinux/Config.in"
730 source "shell/Config.in"
731 source "sysklogd/Config.in"