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 | menu "Miscellaneous Utilities" |
| 7 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 8 | config ADJTIMEX |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 9 | bool "adjtimex" |
| 10 | default n |
| 11 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 12 | Adjtimex reads and optionally sets adjustment parameters for |
| 13 | the Linux clock adjustment algorithm. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 14 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 15 | config BBCONFIG |
Mike Frysinger | 9ed1094 | 2005-09-18 04:43:32 +0000 | [diff] [blame] | 16 | bool "bbconfig" |
| 17 | default n |
| 18 | help |
| 19 | The bbconfig applet will print the config file with which |
| 20 | busybox was built. |
| 21 | |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 22 | config CHAT |
| 23 | bool "chat" |
| 24 | default n |
| 25 | help |
| 26 | Simple chat utility. |
| 27 | |
| 28 | config FEATURE_CHAT_NOFAIL |
| 29 | bool "Enable NOFAIL expect strings" |
Denis Vlasenko | 8617454 | 2008-02-19 11:36:22 +0000 | [diff] [blame] | 30 | depends on CHAT |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 31 | default y |
| 32 | help |
| 33 | When enabled expect strings which are started with a dash trigger |
| 34 | no-fail mode. That is when expectation is not met within timeout |
| 35 | the script is not terminated but sends next SEND string and waits |
| 36 | for next EXPECT string. This allows to compose far more flexible |
| 37 | scripts. |
| 38 | |
| 39 | config FEATURE_CHAT_TTY_HIFI |
| 40 | bool "Force STDIN to be a TTY" |
Denis Vlasenko | 8617454 | 2008-02-19 11:36:22 +0000 | [diff] [blame] | 41 | depends on CHAT |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 42 | default n |
| 43 | help |
| 44 | Original chat always treats STDIN as a TTY device and sets for it |
| 45 | so-called raw mode. This option turns on such behaviour. |
| 46 | |
| 47 | config FEATURE_CHAT_IMPLICIT_CR |
| 48 | bool "Enable implicit Carriage Return" |
Denis Vlasenko | 8617454 | 2008-02-19 11:36:22 +0000 | [diff] [blame] | 49 | depends on CHAT |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 50 | default y |
| 51 | help |
| 52 | When enabled make chat to terminate all SEND strings with a "\r" |
| 53 | unless "\c" is met anywhere in the string. |
| 54 | |
| 55 | config FEATURE_CHAT_SWALLOW_OPTS |
| 56 | bool "Swallow options" |
Denis Vlasenko | 8617454 | 2008-02-19 11:36:22 +0000 | [diff] [blame] | 57 | depends on CHAT |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 58 | default n |
| 59 | help |
| 60 | Busybox chat require no options. To make it not fail when used |
| 61 | in place of original chat (which has a bunch of options) turn |
| 62 | this on. |
| 63 | |
| 64 | config FEATURE_CHAT_SEND_ESCAPES |
| 65 | bool "Support weird SEND escapes" |
Denis Vlasenko | 8617454 | 2008-02-19 11:36:22 +0000 | [diff] [blame] | 66 | depends on CHAT |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 67 | default n |
| 68 | help |
| 69 | Original chat uses some escape sequences in SEND arguments which |
| 70 | are not sent to device but rather performs special actions. |
| 71 | E.g. "\K" means to send a break sequence to device. |
| 72 | "\d" delays execution for a second, "\p" -- for a 1/100 of second. |
| 73 | Before turning this option on think twice: do you really need them? |
| 74 | |
| 75 | config FEATURE_CHAT_VAR_ABORT_LEN |
| 76 | bool "Support variable-length ABORT conditions" |
Denis Vlasenko | 8617454 | 2008-02-19 11:36:22 +0000 | [diff] [blame] | 77 | depends on CHAT |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 78 | default n |
| 79 | help |
| 80 | Original chat uses fixed 50-bytes length ABORT conditions. Say N here. |
| 81 | |
| 82 | config FEATURE_CHAT_CLR_ABORT |
| 83 | bool "Support revoking of ABORT conditions" |
Denis Vlasenko | 8617454 | 2008-02-19 11:36:22 +0000 | [diff] [blame] | 84 | depends on CHAT |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 85 | default n |
| 86 | help |
| 87 | Support CLR_ABORT directive. |
| 88 | |
Bernhard Reutner-Fischer | 71bc71a | 2007-03-09 16:56:38 +0000 | [diff] [blame] | 89 | config CHRT |
| 90 | bool "chrt" |
| 91 | default n |
| 92 | help |
| 93 | manipulate real-time attributes of a process. |
| 94 | This requires sched_{g,s}etparam support in your libc. |
| 95 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 96 | config CROND |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 97 | bool "crond" |
| 98 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 99 | select FEATURE_SUID |
| 100 | select FEATURE_SYSLOG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 101 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 102 | Crond is a background daemon that parses individual crontab |
| 103 | files and executes commands on behalf of the users in question. |
Eric Andersen | 98e4eab | 2004-07-20 08:07:10 +0000 | [diff] [blame] | 104 | This is a port of dcron from slackware. It uses files of the |
| 105 | format /var/spool/cron/crontabs/<username> files, for example: |
| 106 | $ cat /var/spool/cron/crontabs/root |
| 107 | # Run daily cron jobs at 4:40 every day: |
| 108 | 40 4 * * * /etc/cron/daily > /dev/null 2>&1 |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 109 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 110 | config DEBUG_CROND_OPTION |
Denis Vlasenko | 4e6c812 | 2008-03-12 22:10:25 +0000 | [diff] [blame] | 111 | bool "Support option -d to redirect output to stderr" |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 112 | depends on CROND |
Bernhard Reutner-Fischer | ef21629 | 2006-05-20 14:14:05 +0000 | [diff] [blame] | 113 | default n |
| 114 | help |
Denis Vlasenko | 4e6c812 | 2008-03-12 22:10:25 +0000 | [diff] [blame] | 115 | -d sets loglevel to 0 (most verbose) and directs all output to stderr. |
Bernhard Reutner-Fischer | ef21629 | 2006-05-20 14:14:05 +0000 | [diff] [blame] | 116 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 117 | config FEATURE_CROND_CALL_SENDMAIL |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 118 | bool "Using /usr/sbin/sendmail?" |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 119 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 120 | depends on CROND |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 121 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 122 | Support calling /usr/sbin/sendmail for send cmd outputs. |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 123 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 124 | config CRONTAB |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 125 | bool "crontab" |
| 126 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 127 | select FEATURE_SUID |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 128 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 129 | Crontab manipulates the crontab for a particular user. Only |
| 130 | the superuser may specify a different user and/or crontab directory. |
Denis Vlasenko | 4e6c812 | 2008-03-12 22:10:25 +0000 | [diff] [blame] | 131 | Note that Busybox binary must be setuid root for this applet to |
| 132 | work properly. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 133 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 134 | config DC |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 135 | bool "dc" |
| 136 | default n |
| 137 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 138 | Dc is a reverse-polish desk calculator which supports unlimited |
| 139 | precision arithmetic. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 140 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 141 | config DEVFSD |
Rob Landley | 4c5ad2f | 2006-06-07 20:11:53 +0000 | [diff] [blame] | 142 | bool "devfsd (obsolete)" |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 143 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 144 | select FEATURE_SYSLOG |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 145 | help |
Rob Landley | 1f9145c | 2006-07-12 21:31:16 +0000 | [diff] [blame] | 146 | This is deprecated, and will be removed at the end of 2008. |
Rob Landley | 4c5ad2f | 2006-06-07 20:11:53 +0000 | [diff] [blame] | 147 | |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 148 | Provides compatibility with old device names on a devfs systems. |
| 149 | You should set it to true if you have devfs enabled. |
Eric Andersen | f18bd89 | 2003-12-19 11:07:59 +0000 | [diff] [blame] | 150 | The following keywords in devsfd.conf are supported: |
| 151 | "CLEAR_CONFIG", "INCLUDE", "OPTIONAL_INCLUDE", "RESTORE", |
| 152 | "PERMISSIONS", "EXECUTE", "COPY", "IGNORE", |
| 153 | "MKOLDCOMPAT", "MKNEWCOMPAT","RMOLDCOMPAT", "RMNEWCOMPAT". |
| 154 | |
| 155 | But only if they are written UPPERCASE!!!!!!!! |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 156 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 157 | config DEVFSD_MODLOAD |
Eric Andersen | f18bd89 | 2003-12-19 11:07:59 +0000 | [diff] [blame] | 158 | bool "Adds support for MODLOAD keyword in devsfd.conf" |
Glenn L McGrath | 3860b2e | 2003-11-30 23:46:06 +0000 | [diff] [blame] | 159 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 160 | depends on DEVFSD |
Glenn L McGrath | 3860b2e | 2003-11-30 23:46:06 +0000 | [diff] [blame] | 161 | help |
Rob Landley | 4c5ad2f | 2006-06-07 20:11:53 +0000 | [diff] [blame] | 162 | This actually doesn't work with busybox modutils but needs |
| 163 | the external modutils. |
Glenn L McGrath | 3860b2e | 2003-11-30 23:46:06 +0000 | [diff] [blame] | 164 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 165 | config DEVFSD_FG_NP |
Eric Andersen | f18bd89 | 2003-12-19 11:07:59 +0000 | [diff] [blame] | 166 | bool "Enables the -fg and -np options" |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 167 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 168 | depends on DEVFSD |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 169 | help |
Bernhard Reutner-Fischer | b111917 | 2008-07-01 12:20:20 +0000 | [diff] [blame^] | 170 | -fg Run the daemon in the foreground. |
| 171 | -np Exit after parsing the configuration file. |
| 172 | Do not poll for events. |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 173 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 174 | config DEVFSD_VERBOSE |
Eric Andersen | f18bd89 | 2003-12-19 11:07:59 +0000 | [diff] [blame] | 175 | bool "Increases logging (and size)" |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 176 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 177 | depends on DEVFSD |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 178 | help |
Eric Andersen | f18bd89 | 2003-12-19 11:07:59 +0000 | [diff] [blame] | 179 | Increases logging to stderr or syslog. |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 180 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 181 | config FEATURE_DEVFS |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 182 | bool "Use devfs names for all devices (obsolete)" |
Rob Landley | 4c5ad2f | 2006-06-07 20:11:53 +0000 | [diff] [blame] | 183 | default n |
| 184 | help |
Rob Landley | 1f9145c | 2006-07-12 21:31:16 +0000 | [diff] [blame] | 185 | This is obsolete and will be going away at the end of 2008.. |
| 186 | |
Rob Landley | 4c5ad2f | 2006-06-07 20:11:53 +0000 | [diff] [blame] | 187 | This tells busybox to look for names like /dev/loop/0 instead of |
| 188 | /dev/loop0. If your /dev directory has normal names instead of |
| 189 | devfs names, you don't want this. |
| 190 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 191 | config EJECT |
Mike Frysinger | 55e2cf6 | 2005-05-11 00:25:47 +0000 | [diff] [blame] | 192 | bool "eject" |
| 193 | default n |
| 194 | help |
| 195 | Used to eject cdroms. (defaults to /dev/cdrom) |
| 196 | |
Bernhard Reutner-Fischer | afdad65 | 2008-02-08 15:04:00 +0000 | [diff] [blame] | 197 | config FEATURE_EJECT_SCSI |
Denis Vlasenko | 08ec67b | 2008-03-26 13:32:30 +0000 | [diff] [blame] | 198 | bool "SCSI support" |
| 199 | default n |
| 200 | depends on EJECT |
| 201 | help |
| 202 | Add the -s option to eject, this allows to eject SCSI-Devices and |
| 203 | usb-storage devices. |
| 204 | |
| 205 | config FBSPLASH |
| 206 | bool "fbsplash" |
| 207 | default n |
| 208 | help |
| 209 | Shows splash image and progress bar on framebuffer device. |
| 210 | Can be used during boot phase of an embedded device. ~2kb. |
| 211 | Usage: |
| 212 | - use kernel option 'vga=xxx' or otherwise enable fb device. |
Denis Vlasenko | 25a9c17 | 2008-03-26 15:12:11 +0000 | [diff] [blame] | 213 | - put somewhere fbsplash.cfg file and an image in .ppm format. |
Denis Vlasenko | 08ec67b | 2008-03-26 13:32:30 +0000 | [diff] [blame] | 214 | - $ setsid fbsplash [params] & |
Denis Vlasenko | 25a9c17 | 2008-03-26 15:12:11 +0000 | [diff] [blame] | 215 | -c: hide cursor |
| 216 | -d /dev/fbN: framebuffer device (if not /dev/fb0) |
| 217 | -s path_to_image_file (can be "-" for stdin) |
Denis Vlasenko | 72b3442 | 2008-03-27 13:14:29 +0000 | [diff] [blame] | 218 | -i path_to_cfg_file (can be "-" for stdin) |
Denis Vlasenko | 25a9c17 | 2008-03-26 15:12:11 +0000 | [diff] [blame] | 219 | -f path_to_fifo (can be "-" for stdin) |
| 220 | - if you want to run it only in presence of kernel parameter: |
Denis Vlasenko | 08ec67b | 2008-03-26 13:32:30 +0000 | [diff] [blame] | 221 | grep -q "fbsplash=on" </proc/cmdline && setsid fbsplash [params] & |
| 222 | - commands for fifo: |
| 223 | "NN" (ASCII decimal number) - percentage to show on progress bar |
Denis Vlasenko | 72b3442 | 2008-03-27 13:14:29 +0000 | [diff] [blame] | 224 | "exit" - well you guessed it |
Bernhard Reutner-Fischer | afdad65 | 2008-02-08 15:04:00 +0000 | [diff] [blame] | 225 | |
Denis Vlasenko | 8e2c9e1 | 2008-05-24 20:47:18 +0000 | [diff] [blame] | 226 | config INOTIFYD |
| 227 | bool "inotifyd" |
| 228 | default n |
| 229 | help |
Bernhard Reutner-Fischer | b111917 | 2008-07-01 12:20:20 +0000 | [diff] [blame^] | 230 | Simple inotify daemon. Reports filesystem changes. Requires |
| 231 | kernel >= 2.6.13 |
Denis Vlasenko | 8e2c9e1 | 2008-05-24 20:47:18 +0000 | [diff] [blame] | 232 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 233 | config LAST |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 234 | bool "last" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 235 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 236 | select FEATURE_WTMP |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 237 | help |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 238 | 'last' displays a list of the last users that logged into the system. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 239 | |
Bernhard Reutner-Fischer | 69d5ba2 | 2008-05-22 21:56:26 +0000 | [diff] [blame] | 240 | choice |
| 241 | prompt "Choose last implementation" |
Denis Vlasenko | 869d3d3 | 2008-05-22 02:07:58 +0000 | [diff] [blame] | 242 | depends on LAST |
Bernhard Reutner-Fischer | 69d5ba2 | 2008-05-22 21:56:26 +0000 | [diff] [blame] | 243 | default FEATURE_LAST_SMALL |
| 244 | |
| 245 | config FEATURE_LAST_SMALL |
| 246 | bool "small" |
| 247 | help |
| 248 | This is a small version of last with just the basic set of |
| 249 | features. |
| 250 | |
| 251 | config FEATURE_LAST_FANCY |
| 252 | bool "huge" |
Denis Vlasenko | 869d3d3 | 2008-05-22 02:07:58 +0000 | [diff] [blame] | 253 | help |
| 254 | 'last' displays detailed information about the last users that |
| 255 | logged into the system (mimics sysvinit last). +900 bytes. |
Bernhard Reutner-Fischer | 69d5ba2 | 2008-05-22 21:56:26 +0000 | [diff] [blame] | 256 | endchoice |
Denis Vlasenko | 869d3d3 | 2008-05-22 02:07:58 +0000 | [diff] [blame] | 257 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 258 | config LESS |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 259 | bool "less" |
| 260 | default n |
| 261 | help |
| 262 | 'less' is a pager, meaning that it displays text files. It possesses |
| 263 | a wide array of features, and is an improvement over 'more'. |
| 264 | |
Denis Vlasenko | 9a7cef9 | 2006-12-20 02:46:48 +0000 | [diff] [blame] | 265 | config FEATURE_LESS_MAXLINES |
| 266 | int "Max number of input lines less will try to eat" |
| 267 | default 9999999 |
| 268 | depends on LESS |
| 269 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 270 | config FEATURE_LESS_BRACKETS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 271 | bool "Enable bracket searching" |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 272 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 273 | depends on LESS |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 274 | help |
| 275 | This option adds the capability to search for matching left and right |
| 276 | brackets, facilitating programming. |
| 277 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 278 | config FEATURE_LESS_FLAGS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 279 | bool "Enable extra flags" |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 280 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 281 | depends on LESS |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 282 | help |
| 283 | The extra flags provided do the following: |
| 284 | |
| 285 | The -M flag enables a more sophisticated status line. |
| 286 | The -m flag enables a simpler status line with a percentage. |
| 287 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 288 | config FEATURE_LESS_FLAGCS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 289 | bool "Enable flag changes" |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 290 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 291 | depends on LESS |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 292 | help |
| 293 | This enables the ability to change command-line flags within |
| 294 | less itself. |
| 295 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 296 | config FEATURE_LESS_MARKS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 297 | bool "Enable marks" |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 298 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 299 | depends on LESS |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 300 | help |
| 301 | Marks enable positions in a file to be stored for easy reference. |
| 302 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 303 | config FEATURE_LESS_REGEXP |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 304 | bool "Enable regular expressions" |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 305 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 306 | depends on LESS |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 307 | help |
| 308 | Enable regular expressions, allowing complex file searches. |
| 309 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 310 | config HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 311 | bool "hdparm" |
| 312 | default n |
| 313 | help |
| 314 | Get/Set hard drive parameters. Primarily intended for ATA |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 315 | drives. Adds about 13k (or around 30k if you enable the |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 316 | FEATURE_HDPARM_GET_IDENTITY option).... |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 317 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 318 | config FEATURE_HDPARM_GET_IDENTITY |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 319 | bool "Support obtaining detailed information directly from drives" |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 320 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 321 | depends on HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 322 | help |
Rob Landley | 0620841 | 2006-05-31 22:52:57 +0000 | [diff] [blame] | 323 | Enables the -I and -i options to obtain detailed information |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 324 | directly from drives about their capabilities and supported ATA |
Rob Landley | 0620841 | 2006-05-31 22:52:57 +0000 | [diff] [blame] | 325 | feature set. If no device name is specified, hdparm will read |
| 326 | identify data from stdin. Enabling this option will add about 16k... |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 327 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 328 | config FEATURE_HDPARM_HDIO_SCAN_HWIF |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 329 | bool "Register an IDE interface (DANGEROUS)" |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 330 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 331 | depends on HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 332 | help |
| 333 | Enables the 'hdparm -R' option to register an IDE interface. |
| 334 | This is dangerous stuff, so you should probably say N. |
| 335 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 336 | config FEATURE_HDPARM_HDIO_UNREGISTER_HWIF |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 337 | bool "Un-register an IDE interface (DANGEROUS)" |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 338 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 339 | depends on HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 340 | help |
| 341 | Enables the 'hdparm -U' option to un-register an IDE interface. |
| 342 | This is dangerous stuff, so you should probably say N. |
| 343 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 344 | config FEATURE_HDPARM_HDIO_DRIVE_RESET |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 345 | bool "perform device reset (DANGEROUS)" |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 346 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 347 | depends on HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 348 | help |
| 349 | Enables the 'hdparm -w' option to perform a device reset. |
| 350 | This is dangerous stuff, so you should probably say N. |
| 351 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 352 | config FEATURE_HDPARM_HDIO_TRISTATE_HWIF |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 353 | bool "tristate device for hotswap (DANGEROUS)" |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 354 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 355 | depends on HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 356 | help |
| 357 | Enables the 'hdparm -x' option to tristate device for hotswap, |
| 358 | and the '-b' option to get/set bus state. This is dangerous |
| 359 | stuff, so you should probably say N. |
| 360 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 361 | config FEATURE_HDPARM_HDIO_GETSET_DMA |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 362 | bool "get/set using_dma flag (DANGEROUS)" |
Eric Andersen | 0a57a79 | 2003-08-06 08:57:35 +0000 | [diff] [blame] | 363 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 364 | depends on HDPARM |
Eric Andersen | 0a57a79 | 2003-08-06 08:57:35 +0000 | [diff] [blame] | 365 | help |
| 366 | Enables the 'hdparm -d' option to get/set using_dma flag. |
| 367 | This is dangerous stuff, so you should probably say N. |
| 368 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 369 | config MAKEDEVS |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 370 | bool "makedevs" |
| 371 | default n |
| 372 | help |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 373 | 'makedevs' is a utility used to create a batch of devices with |
| 374 | one command. |
| 375 | . |
| 376 | There are two choices for command line behaviour, the interface |
| 377 | as used by LEAF/Linux Router Project, or a device table file. |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 378 | . |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 379 | 'leaf' is traditionally what busybox follows, it allows multiple |
| 380 | devices of a particluar type to be created per command. |
| 381 | e.g. /dev/hda[0-9] |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 382 | Device properties are passed as command line arguments. |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 383 | . |
| 384 | 'table' reads device properties from a file or stdin, allowing |
Bernhard Reutner-Fischer | 771b186 | 2006-03-24 14:30:05 +0000 | [diff] [blame] | 385 | a batch of unrelated devices to be made with one command. |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 386 | User/group names are allowed as an alternative to uid/gid. |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 387 | |
| 388 | choice |
| 389 | prompt "Choose makedevs behaviour" |
Mike Frysinger | 08e7097 | 2007-01-24 09:14:09 +0000 | [diff] [blame] | 390 | depends on MAKEDEVS |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 391 | default FEATURE_MAKEDEVS_TABLE |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 392 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 393 | config FEATURE_MAKEDEVS_LEAF |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 394 | bool "leaf" |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 395 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 396 | config FEATURE_MAKEDEVS_TABLE |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 397 | bool "table" |
| 398 | |
| 399 | endchoice |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 400 | |
Denis Vlasenko | ffa4499 | 2008-04-13 08:20:00 +0000 | [diff] [blame] | 401 | config MAN |
| 402 | bool "man" |
| 403 | default n |
| 404 | help |
| 405 | Format and display manual pages. |
| 406 | |
Denis Vlasenko | 23856ab | 2007-09-22 20:51:41 +0000 | [diff] [blame] | 407 | config MICROCOM |
| 408 | bool "microcom" |
| 409 | default n |
| 410 | help |
| 411 | The poor man's minicom utility for chatting with serial port devices. |
| 412 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 413 | config MOUNTPOINT |
Rob Landley | d00b3a5 | 2005-08-20 05:07:08 +0000 | [diff] [blame] | 414 | bool "mountpoint" |
| 415 | default n |
| 416 | help |
| 417 | mountpoint checks if the directory is a mountpoint. |
| 418 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 419 | config MT |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 420 | bool "mt" |
| 421 | default n |
| 422 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 423 | mt is used to control tape devices. You can use the mt utility |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 424 | to advance or rewind a tape past a specified number of archive |
| 425 | files on the tape. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 426 | |
Denis Vlasenko | c108ed5 | 2006-10-20 19:39:48 +0000 | [diff] [blame] | 427 | config RAIDAUTORUN |
| 428 | bool "raidautorun" |
| 429 | default n |
| 430 | help |
| 431 | raidautorun tells the kernel md driver to |
| 432 | search and start RAID arrays. |
| 433 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 434 | config READAHEAD |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 435 | bool "readahead" |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 436 | default n |
Bernhard Reutner-Fischer | f98d637 | 2007-01-26 09:03:23 +0000 | [diff] [blame] | 437 | depends on LFS |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 438 | help |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 439 | Preload the files listed on the command line into RAM cache so that |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 440 | subsequent reads on these files will not block on disk I/O. |
| 441 | |
| 442 | This applet just calls the readahead(2) system call on each file. |
| 443 | It is mainly useful in system startup scripts to preload files |
| 444 | or executables before they are used. When used at the right time |
Denis Vlasenko | b15ebe4 | 2008-04-13 22:41:27 +0000 | [diff] [blame] | 445 | (in particular when a CPU bound process is running) it can |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 446 | significantly speed up system startup. |
| 447 | |
| 448 | As readahead(2) blocks until each file has been read, it is best to |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 449 | run this applet as a background job. |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 450 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 451 | config RUNLEVEL |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 452 | bool "runlevel" |
Bernhard Reutner-Fischer | 62d7acc | 2005-10-28 20:37:03 +0000 | [diff] [blame] | 453 | default n |
| 454 | help |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 455 | find the current and previous system runlevel. |
Bernhard Reutner-Fischer | 62d7acc | 2005-10-28 20:37:03 +0000 | [diff] [blame] | 456 | |
| 457 | This applet uses utmp but does not rely on busybox supporing |
| 458 | utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc. |
| 459 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 460 | config RX |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 461 | bool "rx" |
Glenn L McGrath | 8f3bc4c | 2003-12-20 07:30:35 +0000 | [diff] [blame] | 462 | default n |
| 463 | help |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 464 | Receive files using the Xmodem protocol. |
Glenn L McGrath | 8f3bc4c | 2003-12-20 07:30:35 +0000 | [diff] [blame] | 465 | |
Denis Vlasenko | 376003b | 2008-04-21 05:05:17 +0000 | [diff] [blame] | 466 | config SETSID |
| 467 | bool "setsid" |
Denis Vlasenko | 5014dad | 2008-02-27 11:54:59 +0000 | [diff] [blame] | 468 | default n |
| 469 | help |
Denis Vlasenko | 376003b | 2008-04-21 05:05:17 +0000 | [diff] [blame] | 470 | setsid runs a program in a new session |
Denis Vlasenko | 5014dad | 2008-02-27 11:54:59 +0000 | [diff] [blame] | 471 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 472 | config STRINGS |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 473 | bool "strings" |
| 474 | default n |
| 475 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 476 | strings prints the printable character sequences for each file |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 477 | specified. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 478 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 479 | config TASKSET |
Bernhard Reutner-Fischer | 16d3e4e | 2006-06-07 15:44:59 +0000 | [diff] [blame] | 480 | bool "taskset" |
| 481 | default n |
| 482 | help |
Mike Frysinger | 259472e | 2006-07-03 05:22:36 +0000 | [diff] [blame] | 483 | Retrieve or set a processes's CPU affinity. |
Bernhard Reutner-Fischer | 32eddff | 2006-11-22 16:39:48 +0000 | [diff] [blame] | 484 | This requires sched_{g,s}etaffinity support in your libc. |
| 485 | |
| 486 | config FEATURE_TASKSET_FANCY |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 487 | bool "Fancy output" |
Bernhard Reutner-Fischer | 32eddff | 2006-11-22 16:39:48 +0000 | [diff] [blame] | 488 | default y |
| 489 | depends on TASKSET |
| 490 | help |
| 491 | Add code for fancy output. This merely silences a compiler-warning |
| 492 | and adds about 135 Bytes. May be needed for machines with alot |
| 493 | of CPUs. |
Rob Landley | 12d9419 | 2006-06-30 22:20:43 +0000 | [diff] [blame] | 494 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 495 | config TIME |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 496 | bool "time" |
| 497 | default n |
| 498 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 499 | The time command runs the specified program with the given arguments. |
| 500 | When the command finishes, time writes a message to standard output |
| 501 | giving timing statistics about this program run. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 502 | |
Denis Vlasenko | c01af95 | 2007-08-02 22:23:47 +0000 | [diff] [blame] | 503 | config TTYSIZE |
| 504 | bool "ttysize" |
| 505 | default n |
| 506 | help |
| 507 | A replacement for "stty size". Unlike stty, can report only width, |
Bernhard Reutner-Fischer | b111917 | 2008-07-01 12:20:20 +0000 | [diff] [blame^] | 508 | only height, or both, in any order. It also does not complain on |
| 509 | error, but returns default 80x24. |
| 510 | Usage in shell scripts: width=`ttysize w`. |
Denis Vlasenko | c01af95 | 2007-08-02 22:23:47 +0000 | [diff] [blame] | 511 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 512 | config WATCHDOG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 513 | bool "watchdog" |
| 514 | default n |
| 515 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 516 | The watchdog utility is used with hardware or software watchdog |
Eric Andersen | 795c4ba | 2003-07-22 10:11:48 +0000 | [diff] [blame] | 517 | device drivers. It opens the specified watchdog device special file |
| 518 | and periodically writes a magic character to the device. If the |
| 519 | watchdog applet ever fails to write the magic character within a |
Eric Andersen | ac00aa7 | 2003-07-26 08:07:56 +0000 | [diff] [blame] | 520 | certain amount of time, the watchdog device assumes the system has |
| 521 | hung, and will cause the hardware to reboot. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 522 | |
| 523 | endmenu |