main: make busybox.conf mode handling less obscure
[oweals/busybox.git] / Config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 mainmenu "BusyBox Configuration"
7
8 config HAVE_DOT_CONFIG
9         bool
10         default y
11
12 menu "Busybox Settings"
13
14 menu "General Configuration"
15
16 config DESKTOP
17         bool "Enable options for full-blown desktop systems"
18         default y
19         help
20           Enable options and features which are not essential.
21           Select this only if you plan to use busybox on full-blown
22           desktop machine with common Linux distro, not on an embedded box.
23
24 config 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
33 config 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
42 config 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
50 config 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
61 choice
62         prompt "Buffer allocation policy"
63         default FEATURE_BUFFERS_USE_MALLOC
64         help
65           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
68             space, this can be deadly. For most folks, this works just fine.
69           - 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.
73
74 config FEATURE_BUFFERS_USE_MALLOC
75         bool "Allocate with Malloc"
76
77 config FEATURE_BUFFERS_GO_ON_STACK
78         bool "Allocate on the Stack"
79
80 config FEATURE_BUFFERS_GO_IN_BSS
81         bool "Allocate in the .bss section"
82
83 endchoice
84
85 config SHOW_USAGE
86         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
94 config FEATURE_VERBOSE_USAGE
95         bool "Show verbose applet usage messages"
96         default y
97         depends on SHOW_USAGE
98         help
99           All BusyBox applets will show more verbose help messages when
100           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
102           13k, but it can add much more depending on your configuration.
103
104 config FEATURE_COMPRESS_USAGE
105         bool "Store applet usage messages in compressed form"
106         default y
107         depends on SHOW_USAGE
108         help
109           Store usage messages in compressed form, uncompress them on-the-fly
110           when <applet> --help is called.
111
112           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
114           be noticeable. Also, if you run executables directly from ROM
115           and have very little memory, this might not be a win. Otherwise,
116           you probably want this.
117
118 config FEATURE_INSTALLER
119         bool "Support --install [-s] to install applet links at runtime"
120         default y
121         help
122           Enable 'busybox --install [-s]' support. This will allow you to use
123           busybox at runtime to create hard links or symlinks for all the
124           applets that are compiled into busybox.
125
126 config INSTALL_NO_USR
127         bool "Don't use /usr"
128         default n
129         help
130           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.
133
134 config LOCALE_SUPPORT
135         bool "Enable locale support (system needs locale for this to work)"
136         default n
137         help
138           Enable this if your system has locale support and you would like
139           busybox to support locale settings.
140
141 config UNICODE_SUPPORT
142         bool "Support Unicode"
143         default y
144         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
153 config 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.
160           Internal implementation is smaller.
161
162 config FEATURE_CHECK_UNICODE_IN_ENV
163         bool "Check $LANG environment variable"
164         default n
165         depends on UNICODE_SUPPORT && !UNICODE_USING_LOCALE
166         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
172 config SUBST_WCHAR
173         int "Character code to substitute unprintable characters with"
174         depends on UNICODE_SUPPORT
175         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
181 config LAST_SUPPORTED_WCHAR
182         int "Range of supported Unicode characters"
183         depends on UNICODE_SUPPORT
184         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
192           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.
197
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.
205           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...
209           0 - off, any valid printable Unicode character will be printed.
210
211 config UNICODE_COMBINING_WCHARS
212         bool "Allow zero-width Unicode characters on output"
213         default n
214         depends on UNICODE_SUPPORT
215         help
216           With this option off, any Unicode char with width of 0
217           is substituted on output.
218
219 config UNICODE_WIDE_WCHARS
220         bool "Allow wide Unicode characters on output"
221         default n
222         depends on UNICODE_SUPPORT
223         help
224           With this option off, any Unicode char with width > 1
225           is substituted on output.
226
227 config UNICODE_BIDI_SUPPORT
228         bool "Bidirectional character-aware line input"
229         default n
230         depends on UNICODE_SUPPORT && !UNICODE_USING_LOCALE
231         help
232           With this option on, right-to-left Unicode characters
233           are treated differently on input (e.g. cursor movement).
234
235 config 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
246 config 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
251           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.
254           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
258 config LONG_OPTS
259         bool "Support for --long-options"
260         default y
261         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.
264
265 config FEATURE_DEVPTS
266         bool "Use the devpts filesystem for Unix98 PTYs"
267         default y
268         help
269           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
271           and /dev/pts/<number> for the slave side. Otherwise, BSD style
272           /dev/ttyp<number> will be used. To use this option, you should have
273           devpts mounted.
274
275 config FEATURE_CLEAN_UP
276         bool "Clean up all memory before exiting (usually not needed)"
277         default n
278         help
279           As a size optimization, busybox normally exits without explicitly
280           freeing dynamically allocated memory or closing files. This saves
281           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
285           things up manually.
286
287 config 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
296 config 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
307 config FEATURE_PIDFILE
308         bool "Support writing pidfiles"
309         default y
310         help
311           This option makes some applets (e.g. crond, syslogd, inetd) write
312           a pidfile in /var/run. Some applications rely on them.
313
314 config FEATURE_SUID
315         bool "Support for SUID/SGID handling"
316         default y
317         help
318           With this option you can install the busybox binary belonging
319           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.
325
326           If you are really paranoid and don't want to do this, build two
327           busybox binaries with different applets in them (and the appropriate
328           symlinks pointing to each binary), and only set the suid bit on the
329           one that needs it.
330
331           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.
334
335           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").
343
344 config FEATURE_SUID_CONFIG
345         bool "Runtime SUID/SGID configuration via /etc/busybox.conf"
346         default y
347         depends on FEATURE_SUID
348         help
349           Allow the SUID / SGID state of an applet to be determined at runtime
350           by checking /etc/busybox.conf. (This is sort of a poor man's sudo.)
351           The format of this file is as follows:
352
353           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.
362
363           An example might help:
364
365           [SUID]
366           su = ssx root.0 # applet su can be run by anyone and runs with
367                           # euid=0/egid=0
368           su = ssx        # exactly the same
369
370           mount = sx- root.disk # applet mount can be run by root and members
371                                 # of group disk and runs with euid=0
372
373           cp = --- # disable applet cp for everyone
374
375           The file has to be owned by user root, group root and has to be
376           writeable only by root:
377                 (chown 0.0 /etc/busybox.conf; chmod 600 /etc/busybox.conf)
378           The busybox executable has to be owned by user root, group
379           root and has to be setuid root for this to work:
380                 (chown 0.0 /bin/busybox; chmod 4755 /bin/busybox)
381
382           Robert 'sandman' Griebl has more information here:
383           <url: http://www.softforge.de/bb/suid.html >.
384
385 config FEATURE_SUID_CONFIG_QUIET
386         bool "Suppress warning message if /etc/busybox.conf is not readable"
387         default y
388         depends on FEATURE_SUID_CONFIG
389         help
390           /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.
393
394 config SELINUX
395         bool "Support NSA Security Enhanced Linux"
396         default n
397         select PLATFORM_LINUX
398         help
399           Enable support for SELinux in applets ls, ps, and id. Also provide
400           the option of compiling in SELinux applets.
401
402           If you do not have a complete SELinux userland installed, this stuff
403           will not compile. Go visit
404                 http://www.nsa.gov/selinux/index.html
405           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
412
413           Most people will leave this set to 'N'.
414
415 config FEATURE_PREFER_APPLETS
416         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
421           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).
428
429 config BUSYBOX_EXEC_PATH
430         string "Path to BusyBox executable"
431         default "/proc/self/exe"
432         help
433           When Busybox applets need to run other busybox applets, BusyBox
434           sometimes needs to exec() itself. When the /proc filesystem is
435           mounted, /proc/self/exe always points to the currently running
436           executable. If you haven't got /proc, set this to wherever you
437           want to run BusyBox from.
438
439 # These are auto-selected by other options
440
441 config FEATURE_SYSLOG
442         bool #No description makes it a hidden option
443         default n
444         #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.
447
448 config FEATURE_HAVE_RPC
449         bool #No description makes it a hidden option
450         default n
451         #help
452         #  This is automatically selected if any of enabled applets need it.
453         #  You do not need to select it manually.
454
455 endmenu
456
457 menu 'Build Options'
458
459 config STATIC
460         bool "Build BusyBox as a static binary (no shared libs)"
461         default n
462         help
463           If you want to build a static BusyBox binary, which does not
464           use or require any shared libraries, then enable this option.
465           This can cause BusyBox to be considerably larger, so you should
466           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).
470
471           Most people will leave this set to 'N'.
472
473 config PIE
474         bool "Build BusyBox as a position independent executable"
475         default n
476         depends on !STATIC
477         help
478           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
482           Most people will leave this set to 'N'.
483
484 config 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
495 # PIE can be made to work with BUILD_LIBBUSYBOX, but currently
496 # build system does not support that
497 config BUILD_LIBBUSYBOX
498         bool "Build shared libbusybox"
499         default n
500         depends on !FEATURE_PREFER_APPLETS && !PIE && !STATIC
501         help
502           Build a shared library libbusybox.so.N.N.N which contains all
503           busybox code.
504
505           This feature allows every applet to be built as a tiny
506           separate executable. Enabling it for "one big busybox binary"
507           approach serves no purpose and increases code size.
508           You should almost certainly say "no" to this.
509
510 ### 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
523 ###       might act as a copyright barrier. We can and will modify the
524 ###       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.
528
529 config FEATURE_INDIVIDUAL
530         bool "Produce a binary for each applet, linked against libbusybox"
531         default y
532         depends on BUILD_LIBBUSYBOX
533         help
534           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.
538
539           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
547 config FEATURE_SHARED_BUSYBOX
548         bool "Produce additional busybox binary linked against libbusybox"
549         default y
550         depends on BUILD_LIBBUSYBOX
551         help
552           Build busybox, dynamically linked against libbusybox.so.N.N.N.
553
554           You need to have a working dynamic linker.
555
556 ### 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.
574
575 config LFS
576         bool "Build with Large File Support (for accessing files > 2 GB)"
577         default y
578         help
579           If you want to build BusyBox with large file support, then enable
580           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
582           programs that can benefit from large file support include dd, gzip,
583           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'.
585
586 config 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,
592           "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.
598
599 config EXTRA_CFLAGS
600         string "Additional CFLAGS"
601         default ""
602         help
603           Additional CFLAGS to pass to the compiler verbatim.
604
605 endmenu
606
607 menu 'Debugging Options'
608
609 config DEBUG
610         bool "Build BusyBox with extra Debugging symbols"
611         default n
612         help
613           Say Y here if you wish to examine BusyBox internals while applets are
614           running. This increases the size of the binary considerably, and
615           should only be used when doing development. If you are doing
616           development and want to debug BusyBox, answer Y.
617
618           Most people should answer N.
619
620 config DEBUG_PESSIMIZE
621         bool "Disable compiler optimizations"
622         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
627           stepping through it with a debugger. This switches it off, resulting
628           in a much bigger executable that more closely matches the source
629           code.
630
631 config WERROR
632         bool "Abort compilation on any warning"
633         default n
634         help
635           Selecting this will add -Werror to gcc command line.
636
637           Most people should answer N.
638
639 choice
640         prompt "Additional debugging library"
641         default NO_DEBUG_LIB
642         help
643           Using an additional debugging library will make BusyBox become
644           considerable larger and will cause it to run more slowly. You
645           should always leave this option disabled for production use.
646
647           dmalloc support:
648           ----------------
649           This enables compiling with dmalloc ( http://dmalloc.com/ )
650           which is an excellent public domain mem leak and malloc problem
651           detector. To enable dmalloc, before running busybox you will
652           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
655             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
659
660           Electric-fence support:
661           -----------------------
662           This enables compiling with Electric-fence support. Electric
663           fence is another very useful malloc debugging library which uses
664           your computer's virtual memory hardware to detect illegal memory
665           accesses. This support will make BusyBox be considerable larger
666           and run slower, so you should leave this option disabled unless
667           you are hunting a hard to find memory problem.
668
669
670 config NO_DEBUG_LIB
671         bool "None"
672
673 config DMALLOC
674         bool "Dmalloc"
675
676 config EFENCE
677         bool "Electric-fence"
678
679 endchoice
680
681 ### config PARSE
682 ###     bool "Uniform config file parser debugging applet: parse"
683
684 endmenu
685
686 menu 'Installation Options ("make install" behavior)'
687
688 choice
689         prompt "What kind of applet links to install"
690         default INSTALL_APPLET_SYMLINKS
691         help
692           Choose what kind of links to applets are created by "make install".
693
694 config INSTALL_APPLET_SYMLINKS
695         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.
700
701 config INSTALL_APPLET_HARDLINKS
702         bool "as hard-links"
703         help
704           Install applets as hard-links to the busybox binary. This might
705           count on a filesystem with few inodes.
706
707 config INSTALL_APPLET_SCRIPT_WRAPPERS
708         bool "as script wrappers"
709         help
710           Install applets as script wrappers that call the busybox binary.
711
712 config INSTALL_APPLET_DONT
713         bool "not installed"
714         help
715           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.
718
719 endchoice
720
721 choice
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
728 config INSTALL_SH_APPLET_SYMLINK
729         bool "as soft-link"
730         help
731           Install /bin/sh applet as soft-link to the busybox binary.
732
733 config INSTALL_SH_APPLET_HARDLINK
734         bool "as hard-link"
735         help
736           Install /bin/sh applet as hard-link to the busybox binary.
737
738 config INSTALL_SH_APPLET_SCRIPT_WRAPPER
739         bool "as script wrapper"
740         help
741           Install /bin/sh applet as script wrapper that calls
742           the busybox binary.
743
744 endchoice
745
746 config PREFIX
747         string "BusyBox installation prefix"
748         default "./_install"
749         help
750           Define your directory to install BusyBox files/subdirs in.
751
752 endmenu
753
754 source libbb/Config.in
755
756 endmenu
757
758 comment "Applets"
759
760 source archival/Config.in
761 source coreutils/Config.in
762 source console-tools/Config.in
763 source debianutils/Config.in
764 source editors/Config.in
765 source findutils/Config.in
766 source init/Config.in
767 source loginutils/Config.in
768 source e2fsprogs/Config.in
769 source modutils/Config.in
770 source util-linux/Config.in
771 source miscutils/Config.in
772 source networking/Config.in
773 source printutils/Config.in
774 source mailutils/Config.in
775 source procps/Config.in
776 source runit/Config.in
777 source selinux/Config.in
778 source shell/Config.in
779 source sysklogd/Config.in