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