Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 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 | |
Eric Andersen | 068b6b0 | 2002-12-13 22:53:28 +0000 | [diff] [blame] | 8 | config HAVE_DOT_CONFIG |
| 9 | bool |
| 10 | default y |
| 11 | |
Rob Landley | 9dc6913 | 2006-03-13 02:52:23 +0000 | [diff] [blame] | 12 | menu "Busybox Settings" |
Mike Frysinger | 72d59db | 2006-03-10 23:17:17 +0000 | [diff] [blame] | 13 | |
Eric Andersen | 23b5146 | 2002-12-05 21:25:20 +0000 | [diff] [blame] | 14 | menu "General Configuration" |
| 15 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 16 | config DESKTOP |
Bernhard Reutner-Fischer | 68532b3 | 2006-11-17 12:47:50 +0000 | [diff] [blame] | 17 | bool "Enable options for full-blown desktop systems" |
Denis Vlasenko | 97a8dd3 | 2006-10-01 15:55:11 +0000 | [diff] [blame] | 18 | default n |
| 19 | help |
| 20 | Enable options and features which are not essential. |
| 21 | Select this only if you plan to use busybox on full-blown |
Bernhard Reutner-Fischer | 68532b3 | 2006-11-17 12:47:50 +0000 | [diff] [blame] | 22 | desktop machine with common Linux distro, not on an embedded box. |
Denis Vlasenko | 97a8dd3 | 2006-10-01 15:55:11 +0000 | [diff] [blame] | 23 | |
Denis Vlasenko | c7497ea | 2008-06-13 11:16:09 +0000 | [diff] [blame] | 24 | config FEATURE_ASSUME_UNICODE |
| 25 | bool "Assume that 1:1 char/glyph correspondence is not true" |
| 26 | default n |
| 27 | help |
| 28 | This makes various applets aware that one byte is not |
| 29 | one character on screen. |
| 30 | |
| 31 | Busybox aims to eventually work correctly with Unicode displays. |
| 32 | Any older encodings are not guaranteed to work. |
| 33 | Probably by the time when busybox will be fully Unicode-clean, |
| 34 | other encodings will be mainly of historic interest. |
| 35 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 36 | choice |
| 37 | prompt "Buffer allocation policy" |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 38 | default FEATURE_BUFFERS_USE_MALLOC |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 39 | help |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 40 | There are 3 ways BusyBox can handle buffer allocations: |
| 41 | - Use malloc. This costs code size for the call to xmalloc. |
| 42 | - Put them on stack. For some very small machines with limited stack |
| 43 | space, this can be deadly. For most folks, this works just fine. |
| 44 | - Put them in BSS. This works beautifully for computers with a real |
| 45 | MMU (and OS support), but wastes runtime RAM for uCLinux. This |
| 46 | behavior was the only one available for BusyBox versions 0.48 and |
| 47 | earlier. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 48 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 49 | config FEATURE_BUFFERS_USE_MALLOC |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 50 | bool "Allocate with Malloc" |
| 51 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 52 | config FEATURE_BUFFERS_GO_ON_STACK |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 53 | bool "Allocate on the Stack" |
| 54 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 55 | config FEATURE_BUFFERS_GO_IN_BSS |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 56 | bool "Allocate in the .bss section" |
| 57 | |
| 58 | endchoice |
| 59 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 60 | config SHOW_USAGE |
Bernhard Reutner-Fischer | 81901a0 | 2006-03-31 18:43:55 +0000 | [diff] [blame] | 61 | bool "Show terse applet usage messages" |
| 62 | default y |
| 63 | help |
| 64 | All BusyBox applets will show help messages when invoked with |
| 65 | wrong arguments. You can turn off printing these terse usage |
| 66 | messages if you say no here. |
| 67 | This will save you up to 7k. |
| 68 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 69 | config FEATURE_VERBOSE_USAGE |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 70 | bool "Show verbose applet usage messages" |
| 71 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 72 | select SHOW_USAGE |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 73 | help |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 74 | All BusyBox applets will show more verbose help messages when |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 75 | busybox is invoked with --help. This will add a lot of text to the |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 76 | busybox binary. In the default configuration, this will add about |
| 77 | 13k, but it can add much more depending on your configuration. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 78 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 79 | config FEATURE_COMPRESS_USAGE |
Rob Landley | 7e21d5f | 2006-04-27 23:34:46 +0000 | [diff] [blame] | 80 | bool "Store applet usage messages in compressed form" |
| 81 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 82 | depends on SHOW_USAGE |
Rob Landley | 7e21d5f | 2006-04-27 23:34:46 +0000 | [diff] [blame] | 83 | help |
| 84 | Store usage messages in compressed form, uncompress them on-the-fly |
| 85 | when <applet> --help is called. |
| 86 | |
Rob Landley | c7ddefc | 2006-06-14 01:24:33 +0000 | [diff] [blame] | 87 | If you have a really tiny busybox with few applets enabled (and |
| 88 | bunzip2 isn't one of them), the overhead of the decompressor might |
| 89 | be noticeable. Also, if you run executables directly from ROM |
| 90 | and have very little memory, this might not be a win. Otherwise, |
| 91 | you probably want this. |
| 92 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 93 | config FEATURE_INSTALLER |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 94 | bool "Support --install [-s] to install applet links at runtime" |
| 95 | default n |
| 96 | help |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 97 | Enable 'busybox --install [-s]' support. This will allow you to use |
| 98 | busybox at runtime to create hard links or symlinks for all the |
Denis Vlasenko | a7825f2 | 2007-06-16 13:56:51 +0000 | [diff] [blame] | 99 | applets that are compiled into busybox. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 100 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 101 | config LOCALE_SUPPORT |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 102 | bool "Enable locale support (system needs locale for this to work)" |
| 103 | default n |
| 104 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 105 | Enable this if your system has locale support and you would like |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 106 | busybox to support locale settings. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 107 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 108 | config GETOPT_LONG |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 109 | bool "Support for --long-options" |
Bernhard Reutner-Fischer | 7470419 | 2006-06-16 14:03:23 +0000 | [diff] [blame] | 110 | default y |
Denis Vlasenko | c61852a | 2006-11-29 11:09:43 +0000 | [diff] [blame] | 111 | help |
| 112 | Enable this if you want busybox applets to use the gnu --long-option |
| 113 | style, in addition to single character -a -b -c style options. |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 114 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 115 | config FEATURE_DEVPTS |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 116 | bool "Use the devpts filesystem for Unix98 PTYs" |
Rob Landley | c7ddefc | 2006-06-14 01:24:33 +0000 | [diff] [blame] | 117 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 118 | help |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 119 | Enable if you want BusyBox to use Unix98 PTY support. If enabled, |
| 120 | busybox will use /dev/ptmx for the master side of the pseudoterminal |
| 121 | and /dev/pts/<number> for the slave side. Otherwise, BSD style |
| 122 | /dev/ttyp<number> will be used. To use this option, you should have |
Rob Landley | d5b9b60 | 2006-05-31 23:23:42 +0000 | [diff] [blame] | 123 | devpts mounted. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 124 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 125 | config FEATURE_CLEAN_UP |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 126 | bool "Clean up all memory before exiting (usually not needed)" |
| 127 | default n |
| 128 | help |
Rob Landley | 1ab4c3d | 2006-02-08 18:50:17 +0000 | [diff] [blame] | 129 | As a size optimization, busybox normally exits without explicitly |
| 130 | freeing dynamically allocated memory or closing files. This saves |
| 131 | space since the OS will clean up for us, but it can confuse debuggers |
| 132 | like valgrind, which report tons of memory and resource leaks. |
| 133 | |
| 134 | Don't enable this unless you have a really good reason to clean |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 135 | things up manually. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 136 | |
Denis Vlasenko | 10457b9 | 2007-03-27 22:01:31 +0000 | [diff] [blame] | 137 | config FEATURE_PIDFILE |
| 138 | bool "Support writing pidfiles" |
| 139 | default n |
| 140 | help |
Denis Vlasenko | bb23c06 | 2007-08-15 20:05:37 +0000 | [diff] [blame] | 141 | This option makes some applets (e.g. crond, syslogd, inetd) write |
Denis Vlasenko | a7825f2 | 2007-06-16 13:56:51 +0000 | [diff] [blame] | 142 | a pidfile in /var/run. Some applications rely on them. |
Denis Vlasenko | 10457b9 | 2007-03-27 22:01:31 +0000 | [diff] [blame] | 143 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 144 | config FEATURE_SUID |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 145 | bool "Support for SUID/SGID handling" |
| 146 | default n |
| 147 | help |
Rob Landley | d5b9b60 | 2006-05-31 23:23:42 +0000 | [diff] [blame] | 148 | With this option you can install the busybox binary belonging |
| 149 | to root with the suid bit set, and it'll and it'll automatically drop |
| 150 | priviledges for applets that don't need root access. |
| 151 | |
| 152 | If you're really paranoid and don't want to do this, build two |
| 153 | busybox binaries with different applets in them (and the appropriate |
| 154 | symlinks pointing to each binary), and only set the suid bit on the |
| 155 | one that needs it. The applets currently marked to need the suid bit |
| 156 | are login, passwd, su, ping, traceroute, crontab, dnsd, ipcrm, ipcs, |
| 157 | and vlock. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 158 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 159 | config FEATURE_SUID_CONFIG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 160 | bool "Runtime SUID/SGID configuration via /etc/busybox.conf" |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 161 | default n if FEATURE_SUID |
| 162 | depends on FEATURE_SUID |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 163 | help |
Rob Landley | d5b9b60 | 2006-05-31 23:23:42 +0000 | [diff] [blame] | 164 | Allow the SUID / SGID state of an applet to be determined at runtime |
| 165 | by checking /etc/busybox.conf. (This is sort of a poor man's sudo.) |
| 166 | The format of this file is as follows: |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 167 | |
| 168 | <applet> = [Ssx-][Ssx-][x-] (<username>|<uid>).(<groupname>|<gid>) |
Eric Andersen | 5043ea1 | 2005-06-23 19:15:40 +0000 | [diff] [blame] | 169 | |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 170 | An example might help: |
| 171 | |
| 172 | [SUID] |
| 173 | su = ssx root.0 # applet su can be run by anyone and runs with euid=0/egid=0 |
| 174 | su = ssx # exactly the same |
| 175 | |
| 176 | mount = sx- root.disk # applet mount can be run by root and members of group disk |
| 177 | # and runs with euid=0 |
| 178 | |
| 179 | cp = --- # disable applet cp for everyone |
| 180 | |
Rob Landley | fdc4c20 | 2005-04-29 19:48:29 +0000 | [diff] [blame] | 181 | The file has to be owned by user root, group root and has to be |
| 182 | writeable only by root: |
Denis Vlasenko | 6cee58e | 2007-11-04 15:43:26 +0000 | [diff] [blame] | 183 | (chown 0.0 /etc/busybox.conf; chmod 600 /etc/busybox.conf) |
Rob Landley | fdc4c20 | 2005-04-29 19:48:29 +0000 | [diff] [blame] | 184 | The busybox executable has to be owned by user root, group |
| 185 | root and has to be setuid root for this to work: |
Denis Vlasenko | 6cee58e | 2007-11-04 15:43:26 +0000 | [diff] [blame] | 186 | (chown 0.0 /bin/busybox; chmod 4755 /bin/busybox) |
Rob Landley | fdc4c20 | 2005-04-29 19:48:29 +0000 | [diff] [blame] | 187 | |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 188 | Robert 'sandman' Griebl has more information here: |
| 189 | <url: http://www.softforge.de/bb/suid.html >. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 190 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 191 | config FEATURE_SUID_CONFIG_QUIET |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 192 | bool "Suppress warning message if /etc/busybox.conf is not readable" |
Rob Landley | d5b9b60 | 2006-05-31 23:23:42 +0000 | [diff] [blame] | 193 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 194 | depends on FEATURE_SUID_CONFIG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 195 | help |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 196 | /etc/busybox.conf should be readable by the user needing the SUID, check |
| 197 | this option to avoid users to be notified about missing permissions. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 198 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 199 | config SELINUX |
Eric Andersen | 9e48045 | 2003-07-03 10:07:04 +0000 | [diff] [blame] | 200 | bool "Support NSA Security Enhanced Linux" |
| 201 | default n |
| 202 | help |
Rob Landley | 24b0a95 | 2006-03-29 15:35:23 +0000 | [diff] [blame] | 203 | Enable support for SELinux in applets ls, ps, and id. Also provide |
| 204 | the option of compiling in SELinux applets. |
Eric Andersen | 9e48045 | 2003-07-03 10:07:04 +0000 | [diff] [blame] | 205 | |
Rob Landley | 24b0a95 | 2006-03-29 15:35:23 +0000 | [diff] [blame] | 206 | If you do not have a complete SELinux userland installed, this stuff |
| 207 | will not compile. Go visit |
Eric Andersen | 31d898f | 2004-02-05 00:18:26 +0000 | [diff] [blame] | 208 | http://www.nsa.gov/selinux/index.html |
Rob Landley | 24b0a95 | 2006-03-29 15:35:23 +0000 | [diff] [blame] | 209 | to download the necessary stuff to allow busybox to compile with |
| 210 | this option enabled. Specifially, libselinux 1.28 or better is |
| 211 | directly required by busybox. If the installation is located in a |
| 212 | non-standard directory, provide it by invoking make as follows: |
| 213 | CFLAGS=-I<libselinux-include-path> \ |
| 214 | LDFLAGS=-L<libselinux-lib-path> \ |
| 215 | make |
Eric Andersen | 31d898f | 2004-02-05 00:18:26 +0000 | [diff] [blame] | 216 | |
| 217 | Most people will leave this set to 'N'. |
| 218 | |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 219 | config FEATURE_PREFER_APPLETS |
Denis Vlasenko | 2f0c0d0 | 2007-01-21 00:41:04 +0000 | [diff] [blame] | 220 | bool "exec prefers applets" |
| 221 | default n |
| 222 | help |
| 223 | This is an experimental option which directs applets about to |
| 224 | call 'exec' to try and find an applicable busybox applet before |
Denis Vlasenko | 92c0b82 | 2007-05-08 17:27:17 +0000 | [diff] [blame] | 225 | searching the PATH. This is typically done by exec'ing |
| 226 | /proc/self/exe. |
| 227 | This may affect shell, find -exec, xargs and similar applets. |
| 228 | They will use applets even if /bin/<applet> -> busybox link |
| 229 | is missing (or is not a link to busybox). However, this causes |
| 230 | problems in chroot jails without mounted /proc and with ps/top |
| 231 | (command name can be shown as 'exe' for applets started this way). |
Denis Vlasenko | 2f0c0d0 | 2007-01-21 00:41:04 +0000 | [diff] [blame] | 232 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 233 | config BUSYBOX_EXEC_PATH |
Rob Landley | c7ddefc | 2006-06-14 01:24:33 +0000 | [diff] [blame] | 234 | string "Path to BusyBox executable" |
| 235 | default "/proc/self/exe" |
| 236 | help |
| 237 | When Busybox applets need to run other busybox applets, BusyBox |
| 238 | sometimes needs to exec() itself. When the /proc filesystem is |
| 239 | mounted, /proc/self/exe always points to the currently running |
| 240 | executable. If you haven't got /proc, set this to wherever you |
| 241 | want to run BusyBox from. |
| 242 | |
Denis Vlasenko | a7825f2 | 2007-06-16 13:56:51 +0000 | [diff] [blame] | 243 | # These are auto-selected by other options |
| 244 | |
| 245 | config FEATURE_SYSLOG |
| 246 | bool "Support for logging to syslog" |
| 247 | default n |
| 248 | help |
| 249 | This option is auto-selected when you select any applet which may |
| 250 | send its output to syslog. You do not need to select it manually. |
| 251 | |
| 252 | config FEATURE_HAVE_RPC |
| 253 | bool "RPC support" |
| 254 | default n |
| 255 | help |
| 256 | This is automatically selected if any of enabled applets need it. |
| 257 | You do not need to select it manually. |
| 258 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 259 | endmenu |
| 260 | |
| 261 | menu 'Build Options' |
| 262 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 263 | config STATIC |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 264 | bool "Build BusyBox as a static binary (no shared libs)" |
| 265 | default n |
| 266 | help |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 267 | If you want to build a static BusyBox binary, which does not |
| 268 | use or require any shared libraries, then enable this option. |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 269 | This can cause BusyBox to be considerably larger, so you should |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 270 | leave this option false unless you have a good reason (i.e. |
| 271 | your target platform does not support shared libraries, or |
| 272 | you are building an initrd which doesn't need anything but |
| 273 | BusyBox, etc). |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 274 | |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 275 | Most people will leave this set to 'N'. |
| 276 | |
Denis Vlasenko | 1da86d2 | 2008-06-04 11:28:24 +0000 | [diff] [blame] | 277 | config PIE |
| 278 | bool "Build BusyBox as a position independent executable" |
| 279 | default n |
| 280 | depends on !STATIC |
| 281 | help |
| 282 | (TODO: what is it and why/when is it useful?) |
| 283 | Most people will leave this set to 'N'. |
| 284 | |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 285 | config NOMMU |
| 286 | bool "Force NOMMU build" |
| 287 | default n |
| 288 | help |
| 289 | Busybox tries to detect whether architecture it is being |
| 290 | built against supports MMU or not. If this detection fails, |
| 291 | or if you want to build NOMMU version of busybox for testing, |
| 292 | you may force NOMMU build here. |
| 293 | |
| 294 | Most people will leave this set to 'N'. |
| 295 | |
Denis Vlasenko | cc3f20b | 2008-06-23 22:31:52 +0000 | [diff] [blame] | 296 | # PIE can be made to work with BUILD_LIBBUSYBOX, but currently |
| 297 | # build system does not support that |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 298 | config BUILD_LIBBUSYBOX |
Bernhard Reutner-Fischer | 2aba395 | 2006-01-24 16:14:14 +0000 | [diff] [blame] | 299 | bool "Build shared libbusybox" |
Rob Landley | c7ddefc | 2006-06-14 01:24:33 +0000 | [diff] [blame] | 300 | default n |
Denis Vlasenko | fc5e806 | 2008-07-09 21:24:18 +0000 | [diff] [blame] | 301 | depends on !FEATURE_PREFER_APPLETS && !PIE && !STATIC |
Bernhard Reutner-Fischer | 2aba395 | 2006-01-24 16:14:14 +0000 | [diff] [blame] | 302 | help |
Denis Vlasenko | d62fd84 | 2007-10-07 20:46:34 +0000 | [diff] [blame] | 303 | Build a shared library libbusybox.so.N.N.N which contains all |
| 304 | busybox code. |
Bernhard Reutner-Fischer | 2aba395 | 2006-01-24 16:14:14 +0000 | [diff] [blame] | 305 | |
Denis Vlasenko | d62fd84 | 2007-10-07 20:46:34 +0000 | [diff] [blame] | 306 | This feature allows every applet to be built as a tiny |
| 307 | separate executable. Enabling it for "one big busybox binary" |
| 308 | approach serves no purpose and increases code size. |
| 309 | You should almost certainly say "no" to this. |
Rob Landley | d6e5083 | 2006-06-15 15:04:53 +0000 | [diff] [blame] | 310 | |
Denis Vlasenko | def8898 | 2007-10-07 17:06:01 +0000 | [diff] [blame] | 311 | ### config FEATURE_FULL_LIBBUSYBOX |
| 312 | ### bool "Feature-complete libbusybox" |
| 313 | ### default n if !FEATURE_SHARED_BUSYBOX |
| 314 | ### depends on BUILD_LIBBUSYBOX |
| 315 | ### help |
| 316 | ### Build a libbusybox with the complete feature-set, disregarding |
| 317 | ### the actually selected config. |
| 318 | ### |
| 319 | ### Normally, libbusybox will only contain the features which are |
| 320 | ### used by busybox itself. If you plan to write a separate |
| 321 | ### standalone application which uses libbusybox say 'Y'. |
| 322 | ### |
| 323 | ### Note: libbusybox is GPL, not LGPL, and exports no stable API that |
| 324 | ### might act as a copyright barrier. We can and will modify the |
| 325 | ### exported function set between releases (even minor version number |
| 326 | ### changes), and happily break out-of-tree features. |
| 327 | ### |
| 328 | ### Say 'N' if in doubt. |
Bernhard Reutner-Fischer | 2aba395 | 2006-01-24 16:14:14 +0000 | [diff] [blame] | 329 | |
Denis Vlasenko | f545be0 | 2007-10-07 17:06:26 +0000 | [diff] [blame] | 330 | config FEATURE_INDIVIDUAL |
| 331 | bool "Produce a binary for each applet, linked against libbusybox" |
| 332 | default y |
Denis Vlasenko | fc5e806 | 2008-07-09 21:24:18 +0000 | [diff] [blame] | 333 | depends on BUILD_LIBBUSYBOX |
Bernhard Reutner-Fischer | 2aba395 | 2006-01-24 16:14:14 +0000 | [diff] [blame] | 334 | help |
Denis Vlasenko | f545be0 | 2007-10-07 17:06:26 +0000 | [diff] [blame] | 335 | If your CPU architecture doesn't allow for sharing text/rodata |
| 336 | sections of running binaries, but allows for runtime dynamic |
| 337 | libraries, this option will allow you to reduce memory footprint |
| 338 | when you have many different applets running at once. |
Bernhard Reutner-Fischer | 2aba395 | 2006-01-24 16:14:14 +0000 | [diff] [blame] | 339 | |
Denis Vlasenko | f545be0 | 2007-10-07 17:06:26 +0000 | [diff] [blame] | 340 | If your CPU architecture allows for sharing text/rodata, |
| 341 | having single binary is more optimal. |
| 342 | |
| 343 | Each applet will be a tiny program, dynamically linked |
| 344 | against libbusybox.so.N.N.N. |
| 345 | |
| 346 | You need to have a working dynamic linker. |
| 347 | |
| 348 | config FEATURE_SHARED_BUSYBOX |
| 349 | bool "Produce additional busybox binary linked against libbusybox" |
| 350 | default y |
Denis Vlasenko | fc5e806 | 2008-07-09 21:24:18 +0000 | [diff] [blame] | 351 | depends on BUILD_LIBBUSYBOX |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 352 | help |
Denis Vlasenko | f545be0 | 2007-10-07 17:06:26 +0000 | [diff] [blame] | 353 | Build busybox, dynamically linked against libbusybox.so.N.N.N. |
| 354 | |
| 355 | You need to have a working dynamic linker. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 356 | |
Denis Vlasenko | def8898 | 2007-10-07 17:06:01 +0000 | [diff] [blame] | 357 | ### config BUILD_AT_ONCE |
| 358 | ### bool "Compile all sources at once" |
| 359 | ### default n |
| 360 | ### help |
| 361 | ### Normally each source-file is compiled with one invocation of |
| 362 | ### the compiler. |
| 363 | ### If you set this option, all sources are compiled at once. |
| 364 | ### This gives the compiler more opportunities to optimize which can |
| 365 | ### result in smaller and/or faster binaries. |
| 366 | ### |
| 367 | ### Setting this option will consume alot of memory, e.g. if you |
| 368 | ### enable all applets with all features, gcc uses more than 300MB |
| 369 | ### RAM during compilation of busybox. |
| 370 | ### |
| 371 | ### This option is most likely only beneficial for newer compilers |
| 372 | ### such as gcc-4.1 and above. |
| 373 | ### |
| 374 | ### Say 'N' unless you know what you are doing. |
Bernhard Reutner-Fischer | 2aba395 | 2006-01-24 16:14:14 +0000 | [diff] [blame] | 375 | |
Denis Vlasenko | f545be0 | 2007-10-07 17:06:26 +0000 | [diff] [blame] | 376 | config LFS |
| 377 | bool "Build with Large File Support (for accessing files > 2 GB)" |
| 378 | default n |
| 379 | select FDISK_SUPPORT_LARGE_DISKS |
| 380 | help |
| 381 | If you want to build BusyBox with large file support, then enable |
| 382 | this option. This will have no effect if your kernel or your C |
| 383 | library lacks large file support for large files. Some of the |
| 384 | programs that can benefit from large file support include dd, gzip, |
| 385 | cp, mount, tar, and many others. If you want to access files larger |
| 386 | than 2 Gigabytes, enable this option. Otherwise, leave it set to 'N'. |
| 387 | |
Denis Vlasenko | b8e653b | 2008-06-02 04:51:29 +0000 | [diff] [blame] | 388 | config CROSS_COMPILER_PREFIX |
| 389 | string "Cross Compiler prefix" |
| 390 | default "" |
| 391 | help |
| 392 | If you want to build BusyBox with a cross compiler, then you |
| 393 | will need to set this to the cross-compiler prefix, for example, |
| 394 | "i386-uclibc-". Note that CROSS_COMPILE environment variable |
| 395 | or "make CROSS_COMPILE=xxx ..." will override this selection. |
| 396 | For native build leave it empty. |
| 397 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 398 | endmenu |
| 399 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 400 | menu 'Debugging Options' |
| 401 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 402 | config DEBUG |
Rob Landley | c503df5 | 2006-05-09 22:08:56 +0000 | [diff] [blame] | 403 | bool "Build BusyBox with extra Debugging symbols" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 404 | default n |
| 405 | help |
Rob Landley | c503df5 | 2006-05-09 22:08:56 +0000 | [diff] [blame] | 406 | Say Y here if you wish to examine BusyBox internals while applets are |
| 407 | running. This increases the size of the binary considerably, and |
| 408 | should only be used when doing development. If you are doing |
| 409 | development and want to debug BusyBox, answer Y. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 410 | |
Eric Andersen | f086ed8 | 2004-05-25 11:30:22 +0000 | [diff] [blame] | 411 | Most people should answer N. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 412 | |
Denis Vlasenko | bd8390a | 2008-06-12 20:23:03 +0000 | [diff] [blame] | 413 | config DEBUG_PESSIMIZE |
Denis Vlasenko | c185e29 | 2008-07-16 23:45:11 +0000 | [diff] [blame^] | 414 | bool "Disable compiler optimizations" |
Denis Vlasenko | bd8390a | 2008-06-12 20:23:03 +0000 | [diff] [blame] | 415 | default n |
| 416 | depends on DEBUG |
| 417 | help |
| 418 | The compiler's optimization of source code can eliminate and reorder |
| 419 | code, resulting in an executable that's hard to understand when |
| 420 | stepping through it with a debugger. This switches it off, resulting |
| 421 | in a much bigger executable that more closely matches the source |
| 422 | code. |
| 423 | |
Denis Vlasenko | e0eebc1 | 2007-01-27 13:44:53 +0000 | [diff] [blame] | 424 | config WERROR |
| 425 | bool "Abort compilation on any warning" |
Rob Landley | c503df5 | 2006-05-09 22:08:56 +0000 | [diff] [blame] | 426 | default n |
Rob Landley | c503df5 | 2006-05-09 22:08:56 +0000 | [diff] [blame] | 427 | help |
Denis Vlasenko | e0eebc1 | 2007-01-27 13:44:53 +0000 | [diff] [blame] | 428 | Selecting this will add -Werror to gcc command line. |
| 429 | |
| 430 | Most people should answer N. |
| 431 | |
Eric Andersen | f086ed8 | 2004-05-25 11:30:22 +0000 | [diff] [blame] | 432 | choice |
| 433 | prompt "Additional debugging library" |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 434 | default NO_DEBUG_LIB |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 435 | help |
Eric Andersen | f086ed8 | 2004-05-25 11:30:22 +0000 | [diff] [blame] | 436 | Using an additional debugging library will make BusyBox become |
| 437 | considerable larger and will cause it to run more slowly. You |
| 438 | should always leave this option disabled for production use. |
| 439 | |
| 440 | dmalloc support: |
| 441 | ---------------- |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 442 | This enables compiling with dmalloc ( http://dmalloc.com/ ) |
| 443 | which is an excellent public domain mem leak and malloc problem |
| 444 | detector. To enable dmalloc, before running busybox you will |
| 445 | want to properly set your environment, for example: |
| 446 | export DMALLOC_OPTIONS=debug=0x34f47d83,inter=100,log=logfile |
| 447 | The 'debug=' value is generated using the following command |
| 448 | dmalloc -p log-stats -p log-non-free -p log-bad-space -p log-elapsed-time \ |
| 449 | -p check-fence -p check-heap -p check-lists -p check-blank \ |
| 450 | -p check-funcs -p realloc-copy -p allow-free-null |
| 451 | |
Eric Andersen | f086ed8 | 2004-05-25 11:30:22 +0000 | [diff] [blame] | 452 | Electric-fence support: |
| 453 | ----------------------- |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 454 | This enables compiling with Electric-fence support. Electric |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 455 | fence is another very useful malloc debugging library which uses |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 456 | your computer's virtual memory hardware to detect illegal memory |
| 457 | accesses. This support will make BusyBox be considerable larger |
| 458 | and run slower, so you should leave this option disabled unless |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 459 | you are hunting a hard to find memory problem. |
| 460 | |
Eric Andersen | f086ed8 | 2004-05-25 11:30:22 +0000 | [diff] [blame] | 461 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 462 | config NO_DEBUG_LIB |
Eric Andersen | f086ed8 | 2004-05-25 11:30:22 +0000 | [diff] [blame] | 463 | bool "None" |
| 464 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 465 | config DMALLOC |
Eric Andersen | f086ed8 | 2004-05-25 11:30:22 +0000 | [diff] [blame] | 466 | bool "Dmalloc" |
| 467 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 468 | config EFENCE |
Eric Andersen | f086ed8 | 2004-05-25 11:30:22 +0000 | [diff] [blame] | 469 | bool "Electric-fence" |
| 470 | |
| 471 | endchoice |
| 472 | |
Denis Vlasenko | 0849207 | 2006-12-22 13:56:36 +0000 | [diff] [blame] | 473 | config INCLUDE_SUSv2 |
| 474 | bool "Enable obsolete features removed before SUSv3?" |
Rob Landley | f8fd4db | 2006-01-30 01:30:39 +0000 | [diff] [blame] | 475 | default y |
| 476 | help |
Denis Vlasenko | 0849207 | 2006-12-22 13:56:36 +0000 | [diff] [blame] | 477 | This option will enable backwards compatibility with SuSv2, |
Rob Landley | f8fd4db | 2006-01-30 01:30:39 +0000 | [diff] [blame] | 478 | specifically, old-style numeric options ('command -1 <file>') |
Denis Vlasenko | 0849207 | 2006-12-22 13:56:36 +0000 | [diff] [blame] | 479 | will be supported in head, tail, and fold. (Note: should |
| 480 | affect renice too.) |
Eric Andersen | f086ed8 | 2004-05-25 11:30:22 +0000 | [diff] [blame] | 481 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 482 | endmenu |
Mike Frysinger | 72d59db | 2006-03-10 23:17:17 +0000 | [diff] [blame] | 483 | |
| 484 | menu 'Installation Options' |
| 485 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 486 | config INSTALL_NO_USR |
Mike Frysinger | 72d59db | 2006-03-10 23:17:17 +0000 | [diff] [blame] | 487 | bool "Don't use /usr" |
| 488 | default n |
| 489 | help |
| 490 | Disable use of /usr. Don't activate this option if you don't know |
| 491 | that you really want this behaviour. |
| 492 | |
| 493 | choice |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 494 | prompt "Applets links" |
| 495 | default INSTALL_APPLET_SYMLINKS |
| 496 | help |
| 497 | Choose how you install applets links. |
Mike Frysinger | 72d59db | 2006-03-10 23:17:17 +0000 | [diff] [blame] | 498 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 499 | config INSTALL_APPLET_SYMLINKS |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 500 | bool "as soft-links" |
| 501 | help |
| 502 | Install applets as soft-links to the busybox binary. This needs some |
| 503 | free inodes on the filesystem, but might help with filesystem |
| 504 | generators that can't cope with hard-links. |
Mike Frysinger | 72d59db | 2006-03-10 23:17:17 +0000 | [diff] [blame] | 505 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 506 | config INSTALL_APPLET_HARDLINKS |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 507 | bool "as hard-links" |
| 508 | help |
| 509 | Install applets as hard-links to the busybox binary. This might count |
| 510 | on a filesystem with few inodes. |
Mike Frysinger | 72d59db | 2006-03-10 23:17:17 +0000 | [diff] [blame] | 511 | |
Denis Vlasenko | 737d131 | 2007-08-25 18:25:24 +0000 | [diff] [blame] | 512 | config INSTALL_APPLET_SCRIPT_WRAPPERS |
| 513 | bool "as script wrappers" |
| 514 | help |
| 515 | Install applets as script wrappers that call the busybox binary. |
| 516 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 517 | config INSTALL_APPLET_DONT |
Mike Frysinger | 6cda897 | 2007-01-24 09:32:42 +0000 | [diff] [blame] | 518 | bool "not installed" |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 519 | depends on FEATURE_INSTALLER || FEATURE_SH_STANDALONE || FEATURE_PREFER_APPLETS |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 520 | help |
| 521 | Do not install applet links. Useful when using the -install feature |
Denis Vlasenko | 80d14be | 2007-04-10 23:03:30 +0000 | [diff] [blame] | 522 | or a standalone shell for rescue purposes. |
Mike Frysinger | 72d59db | 2006-03-10 23:17:17 +0000 | [diff] [blame] | 523 | |
| 524 | endchoice |
| 525 | |
Denis Vlasenko | 737d131 | 2007-08-25 18:25:24 +0000 | [diff] [blame] | 526 | choice |
| 527 | prompt "/bin/sh applet link" |
| 528 | default INSTALL_SH_APPLET_SYMLINK |
| 529 | depends on INSTALL_APPLET_SCRIPT_WRAPPERS |
| 530 | help |
| 531 | Choose how you install /bin/sh applet link. |
| 532 | |
| 533 | config INSTALL_SH_APPLET_SYMLINK |
| 534 | bool "as soft-link" |
| 535 | help |
| 536 | Install /bin/sh applet as soft-link to the busybox binary. |
| 537 | |
| 538 | config INSTALL_SH_APPLET_HARDLINK |
| 539 | bool "as hard-link" |
| 540 | help |
| 541 | Install /bin/sh applet as hard-link to the busybox binary. |
| 542 | |
| 543 | config INSTALL_SH_APPLET_SCRIPT_WRAPPER |
| 544 | bool "as script wrapper" |
| 545 | help |
| 546 | Install /bin/sh applet as script wrapper that call the busybox binary. |
| 547 | |
| 548 | endchoice |
| 549 | |
Mike Frysinger | 72d59db | 2006-03-10 23:17:17 +0000 | [diff] [blame] | 550 | config PREFIX |
| 551 | string "BusyBox installation prefix" |
| 552 | default "./_install" |
| 553 | help |
| 554 | Define your directory to install BusyBox files/subdirs in. |
| 555 | |
| 556 | endmenu |
| 557 | |
| 558 | source libbb/Config.in |
| 559 | |
Rob Landley | 9dc6913 | 2006-03-13 02:52:23 +0000 | [diff] [blame] | 560 | endmenu |
| 561 | |
Mike Frysinger | 72d59db | 2006-03-10 23:17:17 +0000 | [diff] [blame] | 562 | comment "Applets" |
| 563 | |
| 564 | source archival/Config.in |
| 565 | source coreutils/Config.in |
| 566 | source console-tools/Config.in |
| 567 | source debianutils/Config.in |
| 568 | source editors/Config.in |
| 569 | source findutils/Config.in |
| 570 | source init/Config.in |
| 571 | source loginutils/Config.in |
| 572 | source e2fsprogs/Config.in |
| 573 | source modutils/Config.in |
| 574 | source util-linux/Config.in |
| 575 | source miscutils/Config.in |
| 576 | source networking/Config.in |
| 577 | source procps/Config.in |
| 578 | source shell/Config.in |
| 579 | source sysklogd/Config.in |
Denis Vlasenko | fe54458 | 2006-10-03 15:57:40 +0000 | [diff] [blame] | 580 | source runit/Config.in |
Denis Vlasenko | d46d3c2 | 2007-02-06 19:28:50 +0000 | [diff] [blame] | 581 | source selinux/Config.in |
Denis Vlasenko | 68444b9 | 2008-02-22 22:24:48 +0000 | [diff] [blame] | 582 | source printutils/Config.in |