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