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 | |
Mike Frysinger | 72d59db | 2006-03-10 23:17:17 +0000 | [diff] [blame^] | 12 | comment "Busybox Settings" |
| 13 | |
Eric Andersen | 23b5146 | 2002-12-05 21:25:20 +0000 | [diff] [blame] | 14 | menu "General Configuration" |
| 15 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 16 | choice |
| 17 | prompt "Buffer allocation policy" |
Eric Andersen | 72d8e44 | 2003-08-05 02:18:25 +0000 | [diff] [blame] | 18 | default CONFIG_FEATURE_BUFFERS_USE_MALLOC |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 19 | help |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 20 | There are 3 ways BusyBox can handle buffer allocations: |
| 21 | - Use malloc. This costs code size for the call to xmalloc. |
| 22 | - Put them on stack. For some very small machines with limited stack |
| 23 | space, this can be deadly. For most folks, this works just fine. |
| 24 | - Put them in BSS. This works beautifully for computers with a real |
| 25 | MMU (and OS support), but wastes runtime RAM for uCLinux. This |
| 26 | behavior was the only one available for BusyBox versions 0.48 and |
| 27 | earlier. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 28 | |
| 29 | config CONFIG_FEATURE_BUFFERS_USE_MALLOC |
| 30 | bool "Allocate with Malloc" |
| 31 | |
| 32 | config CONFIG_FEATURE_BUFFERS_GO_ON_STACK |
| 33 | bool "Allocate on the Stack" |
| 34 | |
| 35 | config CONFIG_FEATURE_BUFFERS_GO_IN_BSS |
| 36 | bool "Allocate in the .bss section" |
| 37 | |
| 38 | endchoice |
| 39 | |
| 40 | config CONFIG_FEATURE_VERBOSE_USAGE |
| 41 | bool "Show verbose applet usage messages" |
| 42 | default n |
| 43 | help |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 44 | All BusyBox applets will show more verbose help messages when |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 45 | 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] | 46 | busybox binary. In the default configuration, this will add about |
| 47 | 13k, but it can add much more depending on your configuration. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 48 | |
| 49 | config CONFIG_FEATURE_INSTALLER |
| 50 | bool "Support --install [-s] to install applet links at runtime" |
| 51 | default n |
| 52 | help |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 53 | Enable 'busybox --install [-s]' support. This will allow you to use |
| 54 | busybox at runtime to create hard links or symlinks for all the |
| 55 | applets that are compiled into busybox. This feature requires the |
| 56 | /proc filesystem. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 57 | |
| 58 | config CONFIG_LOCALE_SUPPORT |
| 59 | bool "Enable locale support (system needs locale for this to work)" |
| 60 | default n |
| 61 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 62 | Enable this if your system has locale support and you would like |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 63 | busybox to support locale settings. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 64 | |
| 65 | config CONFIG_FEATURE_DEVFS |
| 66 | bool "Support for devfs" |
| 67 | default n |
| 68 | help |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 69 | Enable if you want BusyBox to work with devfs. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 70 | |
| 71 | config CONFIG_FEATURE_DEVPTS |
| 72 | bool "Use the devpts filesystem for Unix98 PTYs" |
| 73 | default y if CONFIG_FEATURE_DEVFS |
| 74 | help |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 75 | Enable if you want BusyBox to use Unix98 PTY support. If enabled, |
| 76 | busybox will use /dev/ptmx for the master side of the pseudoterminal |
| 77 | and /dev/pts/<number> for the slave side. Otherwise, BSD style |
| 78 | /dev/ttyp<number> will be used. To use this option, you should have |
| 79 | devpts or devfs mounted. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 80 | |
| 81 | config CONFIG_FEATURE_CLEAN_UP |
| 82 | bool "Clean up all memory before exiting (usually not needed)" |
| 83 | default n |
| 84 | help |
Rob Landley | 1ab4c3d | 2006-02-08 18:50:17 +0000 | [diff] [blame] | 85 | As a size optimization, busybox normally exits without explicitly |
| 86 | freeing dynamically allocated memory or closing files. This saves |
| 87 | space since the OS will clean up for us, but it can confuse debuggers |
| 88 | like valgrind, which report tons of memory and resource leaks. |
| 89 | |
| 90 | 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] | 91 | things up manually. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 92 | |
| 93 | config CONFIG_FEATURE_SUID |
| 94 | bool "Support for SUID/SGID handling" |
| 95 | default n |
| 96 | help |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 97 | Support SUID and SGID binaries. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 98 | |
| 99 | config CONFIG_FEATURE_SUID_CONFIG |
| 100 | bool "Runtime SUID/SGID configuration via /etc/busybox.conf" |
Eric Andersen | 5043ea1 | 2005-06-23 19:15:40 +0000 | [diff] [blame] | 101 | default n if CONFIG_FEATURE_SUID |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 102 | depends on CONFIG_FEATURE_SUID |
| 103 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 104 | Allow the SUID / SGID state of an applet to be determined runtime by |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 105 | checking /etc/busybox.conf. The format of this file is as follows: |
| 106 | |
| 107 | <applet> = [Ssx-][Ssx-][x-] (<username>|<uid>).(<groupname>|<gid>) |
Eric Andersen | 5043ea1 | 2005-06-23 19:15:40 +0000 | [diff] [blame] | 108 | |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 109 | An example might help: |
| 110 | |
| 111 | [SUID] |
| 112 | su = ssx root.0 # applet su can be run by anyone and runs with euid=0/egid=0 |
| 113 | su = ssx # exactly the same |
| 114 | |
| 115 | mount = sx- root.disk # applet mount can be run by root and members of group disk |
| 116 | # and runs with euid=0 |
| 117 | |
| 118 | cp = --- # disable applet cp for everyone |
| 119 | |
Rob Landley | fdc4c20 | 2005-04-29 19:48:29 +0000 | [diff] [blame] | 120 | The file has to be owned by user root, group root and has to be |
| 121 | writeable only by root: |
| 122 | (chown 0.0 /etc/busybox.conf; chmod 600 /etc/busybox.conf) |
| 123 | The busybox executable has to be owned by user root, group |
| 124 | root and has to be setuid root for this to work: |
| 125 | (chown 0.0 /bin/busybox; chmod 4755 /bin/busybox) |
| 126 | |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 127 | Robert 'sandman' Griebl has more information here: |
| 128 | <url: http://www.softforge.de/bb/suid.html >. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 129 | |
| 130 | config CONFIG_FEATURE_SUID_CONFIG_QUIET |
| 131 | bool "Suppress warning message if /etc/busybox.conf is not readable" |
| 132 | default n |
| 133 | depends on CONFIG_FEATURE_SUID_CONFIG |
| 134 | help |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 135 | /etc/busybox.conf should be readable by the user needing the SUID, check |
| 136 | this option to avoid users to be notified about missing permissions. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 137 | |
Eric Andersen | 9e48045 | 2003-07-03 10:07:04 +0000 | [diff] [blame] | 138 | config CONFIG_SELINUX |
| 139 | bool "Support NSA Security Enhanced Linux" |
| 140 | default n |
| 141 | help |
| 142 | Enable support for SE Linux in applets ls, ps, and id. Also provide |
| 143 | the option of compiling in SE Linux applets. |
| 144 | |
Eric Andersen | 31d898f | 2004-02-05 00:18:26 +0000 | [diff] [blame] | 145 | If you do not have a complete SE Linux Full Userland installed, this |
| 146 | stuff will not compile. Go visit |
| 147 | http://www.nsa.gov/selinux/index.html |
| 148 | to download the necessary stuff to allow busybox to compile with this |
| 149 | option enabled. |
| 150 | |
| 151 | Most people will leave this set to 'N'. |
| 152 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 153 | endmenu |
| 154 | |
| 155 | menu 'Build Options' |
| 156 | |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 157 | config CONFIG_STATIC |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 158 | bool "Build BusyBox as a static binary (no shared libs)" |
| 159 | default n |
| 160 | help |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 161 | If you want to build a static BusyBox binary, which does not |
| 162 | use or require any shared libraries, then enable this option. |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 163 | This can cause BusyBox to be considerably larger, so you should |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 164 | leave this option false unless you have a good reason (i.e. |
| 165 | your target platform does not support shared libraries, or |
| 166 | you are building an initrd which doesn't need anything but |
| 167 | BusyBox, etc). |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 168 | |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 169 | Most people will leave this set to 'N'. |
| 170 | |
Bernhard Reutner-Fischer | 2aba395 | 2006-01-24 16:14:14 +0000 | [diff] [blame] | 171 | config CONFIG_BUILD_LIBBUSYBOX |
| 172 | bool "Build shared libbusybox" |
| 173 | default y |
| 174 | help |
| 175 | Build a shared library libbusybox.so which contains all |
| 176 | libraries used inside busybox. |
| 177 | |
| 178 | config CONFIG_FEATURE_FULL_LIBBUSYBOX |
| 179 | bool "Feature-complete libbusybox" |
| 180 | default n if !CONFIG_FEATURE_SHARED_BUSYBOX |
| 181 | depends on CONFIG_BUILD_LIBBUSYBOX |
| 182 | help |
| 183 | Build a libbusybox with the complete feature-set, disregarding |
| 184 | the actually selected config. |
| 185 | |
| 186 | Normally, libbusybox will only contain the features which are |
| 187 | used by busybox itself. If you plan to write a separate |
| 188 | standalone application which uses libbusybox say 'Y'. |
| 189 | |
Rob Landley | 9e275e3 | 2006-01-31 03:45:26 +0000 | [diff] [blame] | 190 | Note: libbusybox is GPL, not LGPL, and exports no stable API that |
| 191 | might act as a copyright barrier. We can and will modify the |
| 192 | exported function set between releases (even minor version number |
| 193 | changes), and happily break out-of-tree features. |
| 194 | |
Bernhard Reutner-Fischer | 2aba395 | 2006-01-24 16:14:14 +0000 | [diff] [blame] | 195 | Say 'N' if in doubt. |
| 196 | |
| 197 | config CONFIG_FEATURE_SHARED_BUSYBOX |
| 198 | bool "Use shared libbusybox for busybox" |
| 199 | default y if CONFIG_BUILD_LIBBUSYBOX |
| 200 | depends on !CONFIG_STATIC && CONFIG_BUILD_LIBBUSYBOX |
| 201 | help |
| 202 | Use libbusybox.so also for busybox itself. |
| 203 | You need to have a working dynamic linker to use this variant. |
| 204 | |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 205 | config CONFIG_LFS |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 206 | bool "Build with Large File Support (for accessing files > 2 GB)" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 207 | default n |
Eric Andersen | f086ed8 | 2004-05-25 11:30:22 +0000 | [diff] [blame] | 208 | select FDISK_SUPPORT_LARGE_DISKS |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 209 | help |
| 210 | If you want to build BusyBox with large file support, then enable |
| 211 | this option. This will have no effect if your kernel or your C |
| 212 | library lacks large file support for large files. Some of the |
| 213 | programs that can benefit from large file support include dd, gzip, |
| 214 | cp, mount, tar, and many others. If you want to access files larger |
| 215 | than 2 Gigabytes, enable this option. Otherwise, leave it set to 'N'. |
| 216 | |
| 217 | config USING_CROSS_COMPILER |
| 218 | bool "Do you want to build BusyBox with a Cross Compiler?" |
| 219 | default n |
| 220 | help |
| 221 | Do you want to build BusyBox with a Cross Compiler? If so, |
| 222 | then enable this option. Otherwise leave it set to 'N'. |
| 223 | |
| 224 | config CROSS_COMPILER_PREFIX |
| 225 | string "Cross Compiler prefix" |
| 226 | default "/usr/i386-linux-uclibc/bin/i386-uclibc-" |
| 227 | depends on USING_CROSS_COMPILER |
| 228 | help |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 229 | If you want to build BusyBox with a cross compiler, then you |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 230 | will need to set this to the cross-compiler prefix. For example, |
| 231 | if my cross-compiler is /usr/i386-linux-uclibc/bin/i386-uclibc-gcc |
| 232 | then I would enter '/usr/i386-linux-uclibc/bin/i386-uclibc-' here, |
| 233 | which will ensure the correct compiler is used. |
| 234 | |
| 235 | config EXTRA_CFLAGS_OPTIONS |
| 236 | string "Any extra CFLAGS options for the compiler?" |
| 237 | default "" |
| 238 | help |
| 239 | Do you want to pass any extra CFLAGS options to the compiler as |
| 240 | you build BusyBox? If so, this is the option for you... For example, |
| 241 | if you want to add some simple compiler switches (like -march=i686), |
| 242 | or check for warnings using -Werror, just those options here. |
| 243 | |
Bernhard Reutner-Fischer | 2aba395 | 2006-01-24 16:14:14 +0000 | [diff] [blame] | 244 | config CONFIG_BUILD_AT_ONCE |
| 245 | bool "Compile all sources at once" |
| 246 | default n |
| 247 | help |
| 248 | Normally each source-file is compiled with one invocation of |
| 249 | the compiler. |
| 250 | If you set this option, all sources are compiled at once. |
| 251 | This gives the compiler more opportunities to optimize which can |
| 252 | result in smaller and/or faster binaries. |
| 253 | |
| 254 | Setting this option will consume alot of memory, e.g. if you |
| 255 | enable all applets with all features, gcc uses more than 300MB |
| 256 | RAM during compilation of busybox. |
| 257 | |
| 258 | This option is most likely only beneficial for newer compilers |
| 259 | such as gcc-4.1 and above. |
| 260 | |
| 261 | Say 'N' unless you know what you are doing. |
| 262 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 263 | endmenu |
| 264 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 265 | menu 'Debugging Options' |
| 266 | |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 267 | config CONFIG_DEBUG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 268 | bool "Build BusyBox with Debugging symbols" |
| 269 | default n |
| 270 | help |
| 271 | Say Y here if you wish to compile BusyBox with debugging symbols. |
| 272 | This will allow you to use a debugger to examine BusyBox internals |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 273 | while applets are running. This increases the size of the binary |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 274 | considerably and should only be used when doing development. |
| 275 | If you are doing development and want to debug BusyBox, answer Y. |
| 276 | |
Eric Andersen | f086ed8 | 2004-05-25 11:30:22 +0000 | [diff] [blame] | 277 | Most people should answer N. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 278 | |
Eric Andersen | f086ed8 | 2004-05-25 11:30:22 +0000 | [diff] [blame] | 279 | choice |
| 280 | prompt "Additional debugging library" |
| 281 | default CONFIG_NO_DEBUG_LIB |
| 282 | depends on CONFIG_DEBUG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 283 | help |
Eric Andersen | f086ed8 | 2004-05-25 11:30:22 +0000 | [diff] [blame] | 284 | Using an additional debugging library will make BusyBox become |
| 285 | considerable larger and will cause it to run more slowly. You |
| 286 | should always leave this option disabled for production use. |
| 287 | |
| 288 | dmalloc support: |
| 289 | ---------------- |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 290 | This enables compiling with dmalloc ( http://dmalloc.com/ ) |
| 291 | which is an excellent public domain mem leak and malloc problem |
| 292 | detector. To enable dmalloc, before running busybox you will |
| 293 | want to properly set your environment, for example: |
| 294 | export DMALLOC_OPTIONS=debug=0x34f47d83,inter=100,log=logfile |
| 295 | The 'debug=' value is generated using the following command |
| 296 | dmalloc -p log-stats -p log-non-free -p log-bad-space -p log-elapsed-time \ |
| 297 | -p check-fence -p check-heap -p check-lists -p check-blank \ |
| 298 | -p check-funcs -p realloc-copy -p allow-free-null |
| 299 | |
Eric Andersen | f086ed8 | 2004-05-25 11:30:22 +0000 | [diff] [blame] | 300 | Electric-fence support: |
| 301 | ----------------------- |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 302 | This enables compiling with Electric-fence support. Electric |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 303 | fence is another very useful malloc debugging library which uses |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 304 | your computer's virtual memory hardware to detect illegal memory |
| 305 | accesses. This support will make BusyBox be considerable larger |
| 306 | and run slower, so you should leave this option disabled unless |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 307 | you are hunting a hard to find memory problem. |
| 308 | |
Eric Andersen | f086ed8 | 2004-05-25 11:30:22 +0000 | [diff] [blame] | 309 | |
| 310 | config CONFIG_NO_DEBUG_LIB |
| 311 | bool "None" |
| 312 | |
| 313 | config CONFIG_DMALLOC |
| 314 | bool "Dmalloc" |
| 315 | |
| 316 | config CONFIG_EFENCE |
| 317 | bool "Electric-fence" |
| 318 | |
| 319 | endchoice |
| 320 | |
Rob Landley | f8fd4db | 2006-01-30 01:30:39 +0000 | [diff] [blame] | 321 | config CONFIG_DEBUG_YANK_SUSv2 |
| 322 | bool "Disable obsolete features removed before SUSv3?" |
| 323 | default y |
| 324 | help |
| 325 | This option will disable backwards compatability with SuSv2, |
| 326 | specifically, old-style numeric options ('command -1 <file>') |
| 327 | will not be supported in head, tail, and fold. (Note: should |
| 328 | yank from renice too.) |
Eric Andersen | f086ed8 | 2004-05-25 11:30:22 +0000 | [diff] [blame] | 329 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 330 | endmenu |
Mike Frysinger | 72d59db | 2006-03-10 23:17:17 +0000 | [diff] [blame^] | 331 | |
| 332 | menu 'Installation Options' |
| 333 | |
| 334 | config CONFIG_INSTALL_NO_USR |
| 335 | bool "Don't use /usr" |
| 336 | default n |
| 337 | help |
| 338 | Disable use of /usr. Don't activate this option if you don't know |
| 339 | that you really want this behaviour. |
| 340 | |
| 341 | choice |
| 342 | prompt "Applets links" |
| 343 | default CONFIG_INSTALL_APPLET_SYMLINKS |
| 344 | help |
| 345 | Choose how you install applets links. |
| 346 | |
| 347 | config CONFIG_INSTALL_APPLET_SYMLINKS |
| 348 | bool "as soft-links" |
| 349 | help |
| 350 | Install applets as soft-links to the busybox binary. This needs some |
| 351 | free inodes on the filesystem, but might help with filesystem |
| 352 | generators that can't cope with hard-links. |
| 353 | |
| 354 | config CONFIG_INSTALL_APPLET_HARDLINKS |
| 355 | bool "as hard-links" |
| 356 | help |
| 357 | Install applets as hard-links to the busybox binary. This might count |
| 358 | on a filesystem with few inodes. |
| 359 | |
| 360 | config CONFIG_INSTALL_APPLET_DONT |
| 361 | bool |
| 362 | prompt "not installed" |
| 363 | depends on CONFIG_FEATURE_INSTALLER || CONFIG_FEATURE_SH_STANDALONE_SHELL |
| 364 | help |
| 365 | Do not install applets links. Usefull when using the -install feature |
| 366 | or a standalone shell for rescue pruposes. |
| 367 | |
| 368 | endchoice |
| 369 | |
| 370 | config PREFIX |
| 371 | string "BusyBox installation prefix" |
| 372 | default "./_install" |
| 373 | help |
| 374 | Define your directory to install BusyBox files/subdirs in. |
| 375 | |
| 376 | endmenu |
| 377 | |
| 378 | source libbb/Config.in |
| 379 | |
| 380 | comment "Applets" |
| 381 | |
| 382 | source archival/Config.in |
| 383 | source coreutils/Config.in |
| 384 | source console-tools/Config.in |
| 385 | source debianutils/Config.in |
| 386 | source editors/Config.in |
| 387 | source findutils/Config.in |
| 388 | source init/Config.in |
| 389 | source loginutils/Config.in |
| 390 | source e2fsprogs/Config.in |
| 391 | source modutils/Config.in |
| 392 | source util-linux/Config.in |
| 393 | source miscutils/Config.in |
| 394 | source networking/Config.in |
| 395 | source procps/Config.in |
| 396 | source shell/Config.in |
| 397 | source sysklogd/Config.in |