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. |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 104 | This is a port of dcron from slackware. It uses files of the |
Eric Andersen | 98e4eab | 2004-07-20 08:07:10 +0000 | [diff] [blame] | 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 | 35a064b | 2008-11-06 00:49:59 +0000 | [diff] [blame] | 110 | config FEATURE_CROND_D |
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 | ded5dfe | 2009-02-03 23:59:41 +0000 | [diff] [blame] | 124 | config FEATURE_CROND_DIR |
| 125 | string "crond spool directory" |
| 126 | default "/var/spool/cron" |
| 127 | depends on CROND || CRONTAB |
| 128 | help |
| 129 | Location of crond spool. |
| 130 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 131 | config CRONTAB |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 132 | bool "crontab" |
| 133 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 134 | select FEATURE_SUID |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 135 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 136 | Crontab manipulates the crontab for a particular user. Only |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 137 | the superuser may specify a different user and/or crontab directory. |
Denis Vlasenko | 4e6c812 | 2008-03-12 22:10:25 +0000 | [diff] [blame] | 138 | Note that Busybox binary must be setuid root for this applet to |
| 139 | work properly. |
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 DC |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 142 | bool "dc" |
| 143 | default n |
| 144 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 145 | Dc is a reverse-polish desk calculator which supports unlimited |
| 146 | precision arithmetic. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 147 | |
Denis Vlasenko | 0783230 | 2008-10-20 08:43:10 +0000 | [diff] [blame] | 148 | config FEATURE_DC_LIBM |
| 149 | bool "Enable power and exp functions (requires libm)" |
| 150 | default n |
| 151 | depends on DC |
| 152 | help |
| 153 | Enable power and exp functions. |
| 154 | NOTE: This will require libm to be present for linking. |
| 155 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 156 | config DEVFSD |
Rob Landley | 4c5ad2f | 2006-06-07 20:11:53 +0000 | [diff] [blame] | 157 | bool "devfsd (obsolete)" |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 158 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 159 | select FEATURE_SYSLOG |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 160 | help |
Bernhard Reutner-Fischer | 52b56b7 | 2009-02-14 12:19:37 +0000 | [diff] [blame] | 161 | This is deprecated and should NOT be used anymore. |
| 162 | Use linux >= 2.6 (optionally with hotplug) and mdev instead! |
| 163 | See docs/mdev.txt for detailed instructions on how to use mdev |
| 164 | instead. |
Rob Landley | 4c5ad2f | 2006-06-07 20:11:53 +0000 | [diff] [blame] | 165 | |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 166 | Provides compatibility with old device names on a devfs systems. |
| 167 | You should set it to true if you have devfs enabled. |
Eric Andersen | f18bd89 | 2003-12-19 11:07:59 +0000 | [diff] [blame] | 168 | The following keywords in devsfd.conf are supported: |
| 169 | "CLEAR_CONFIG", "INCLUDE", "OPTIONAL_INCLUDE", "RESTORE", |
| 170 | "PERMISSIONS", "EXECUTE", "COPY", "IGNORE", |
| 171 | "MKOLDCOMPAT", "MKNEWCOMPAT","RMOLDCOMPAT", "RMNEWCOMPAT". |
| 172 | |
Denis Vlasenko | 4cfa5a2 | 2008-11-10 09:33:42 +0000 | [diff] [blame] | 173 | But only if they are written UPPERCASE!!!!!!!! |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 174 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 175 | config DEVFSD_MODLOAD |
Eric Andersen | f18bd89 | 2003-12-19 11:07:59 +0000 | [diff] [blame] | 176 | bool "Adds support for MODLOAD keyword in devsfd.conf" |
Glenn L McGrath | 3860b2e | 2003-11-30 23:46:06 +0000 | [diff] [blame] | 177 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 178 | depends on DEVFSD |
Glenn L McGrath | 3860b2e | 2003-11-30 23:46:06 +0000 | [diff] [blame] | 179 | help |
Rob Landley | 4c5ad2f | 2006-06-07 20:11:53 +0000 | [diff] [blame] | 180 | This actually doesn't work with busybox modutils but needs |
| 181 | the external modutils. |
Glenn L McGrath | 3860b2e | 2003-11-30 23:46:06 +0000 | [diff] [blame] | 182 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 183 | config DEVFSD_FG_NP |
Eric Andersen | f18bd89 | 2003-12-19 11:07:59 +0000 | [diff] [blame] | 184 | bool "Enables the -fg and -np options" |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 185 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 186 | depends on DEVFSD |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 187 | help |
Bernhard Reutner-Fischer | b111917 | 2008-07-01 12:20:20 +0000 | [diff] [blame] | 188 | -fg Run the daemon in the foreground. |
| 189 | -np Exit after parsing the configuration file. |
| 190 | Do not poll for events. |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 191 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 192 | config DEVFSD_VERBOSE |
Eric Andersen | f18bd89 | 2003-12-19 11:07:59 +0000 | [diff] [blame] | 193 | bool "Increases logging (and size)" |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 194 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 195 | depends on DEVFSD |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 196 | help |
Eric Andersen | f18bd89 | 2003-12-19 11:07:59 +0000 | [diff] [blame] | 197 | Increases logging to stderr or syslog. |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 198 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 199 | config FEATURE_DEVFS |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 200 | bool "Use devfs names for all devices (obsolete)" |
Rob Landley | 4c5ad2f | 2006-06-07 20:11:53 +0000 | [diff] [blame] | 201 | default n |
| 202 | help |
Bernhard Reutner-Fischer | 52b56b7 | 2009-02-14 12:19:37 +0000 | [diff] [blame] | 203 | This is obsolete and should NOT be used anymore. |
| 204 | Use linux >= 2.6 (optionally with hotplug) and mdev instead! |
Rob Landley | 1f9145c | 2006-07-12 21:31:16 +0000 | [diff] [blame] | 205 | |
Bernhard Reutner-Fischer | 52b56b7 | 2009-02-14 12:19:37 +0000 | [diff] [blame] | 206 | For legacy systems -- if there is no way around devfsd -- this |
| 207 | tells busybox to look for names like /dev/loop/0 instead of |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 208 | /dev/loop0. If your /dev directory has normal names instead of |
Rob Landley | 4c5ad2f | 2006-06-07 20:11:53 +0000 | [diff] [blame] | 209 | devfs names, you don't want this. |
| 210 | |
Denis Vlasenko | c94fa56 | 2008-10-26 11:08:14 +0000 | [diff] [blame] | 211 | config DEVMEM |
| 212 | bool "devmem" |
| 213 | default n |
| 214 | help |
| 215 | devmem is a small program that reads and writes from physical |
| 216 | memory using /dev/mem. |
| 217 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 218 | config EJECT |
Mike Frysinger | 55e2cf6 | 2005-05-11 00:25:47 +0000 | [diff] [blame] | 219 | bool "eject" |
| 220 | default n |
| 221 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 222 | Used to eject cdroms. (defaults to /dev/cdrom) |
Mike Frysinger | 55e2cf6 | 2005-05-11 00:25:47 +0000 | [diff] [blame] | 223 | |
Bernhard Reutner-Fischer | afdad65 | 2008-02-08 15:04:00 +0000 | [diff] [blame] | 224 | config FEATURE_EJECT_SCSI |
Denis Vlasenko | 08ec67b | 2008-03-26 13:32:30 +0000 | [diff] [blame] | 225 | bool "SCSI support" |
| 226 | default n |
| 227 | depends on EJECT |
| 228 | help |
| 229 | Add the -s option to eject, this allows to eject SCSI-Devices and |
| 230 | usb-storage devices. |
| 231 | |
| 232 | config FBSPLASH |
| 233 | bool "fbsplash" |
| 234 | default n |
| 235 | help |
| 236 | Shows splash image and progress bar on framebuffer device. |
| 237 | Can be used during boot phase of an embedded device. ~2kb. |
| 238 | Usage: |
| 239 | - use kernel option 'vga=xxx' or otherwise enable fb device. |
Denis Vlasenko | 25a9c17 | 2008-03-26 15:12:11 +0000 | [diff] [blame] | 240 | - put somewhere fbsplash.cfg file and an image in .ppm format. |
Denis Vlasenko | 08ec67b | 2008-03-26 13:32:30 +0000 | [diff] [blame] | 241 | - $ setsid fbsplash [params] & |
Denis Vlasenko | 25a9c17 | 2008-03-26 15:12:11 +0000 | [diff] [blame] | 242 | -c: hide cursor |
| 243 | -d /dev/fbN: framebuffer device (if not /dev/fb0) |
| 244 | -s path_to_image_file (can be "-" for stdin) |
Denis Vlasenko | 72b3442 | 2008-03-27 13:14:29 +0000 | [diff] [blame] | 245 | -i path_to_cfg_file (can be "-" for stdin) |
Denis Vlasenko | 25a9c17 | 2008-03-26 15:12:11 +0000 | [diff] [blame] | 246 | -f path_to_fifo (can be "-" for stdin) |
| 247 | - if you want to run it only in presence of kernel parameter: |
Denis Vlasenko | 08ec67b | 2008-03-26 13:32:30 +0000 | [diff] [blame] | 248 | grep -q "fbsplash=on" </proc/cmdline && setsid fbsplash [params] & |
| 249 | - commands for fifo: |
| 250 | "NN" (ASCII decimal number) - percentage to show on progress bar |
Denis Vlasenko | 72b3442 | 2008-03-27 13:14:29 +0000 | [diff] [blame] | 251 | "exit" - well you guessed it |
Bernhard Reutner-Fischer | afdad65 | 2008-02-08 15:04:00 +0000 | [diff] [blame] | 252 | |
Bernhard Reutner-Fischer | 0d22d17 | 2009-02-18 13:23:46 +0000 | [diff] [blame] | 253 | config FLASH_ERASEALL |
| 254 | bool "flash_eraseall" |
| 255 | default n |
| 256 | help |
| 257 | The flash_eraseall binary from mtd-utils as of git head c4c6a59eb. |
| 258 | This utility is used to erase the whole MTD device. |
| 259 | |
Denis Vlasenko | 4acdb46 | 2009-01-31 21:45:57 +0000 | [diff] [blame] | 260 | config IONICE |
| 261 | bool "ionice" |
| 262 | default n |
| 263 | help |
| 264 | Set/set program io scheduling class and priority |
| 265 | Requires kernel >= 2.6.13 |
| 266 | |
Denis Vlasenko | 8e2c9e1 | 2008-05-24 20:47:18 +0000 | [diff] [blame] | 267 | config INOTIFYD |
| 268 | bool "inotifyd" |
| 269 | default n |
| 270 | help |
Bernhard Reutner-Fischer | b111917 | 2008-07-01 12:20:20 +0000 | [diff] [blame] | 271 | Simple inotify daemon. Reports filesystem changes. Requires |
| 272 | kernel >= 2.6.13 |
Denis Vlasenko | 8e2c9e1 | 2008-05-24 20:47:18 +0000 | [diff] [blame] | 273 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 274 | config LAST |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 275 | bool "last" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 276 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 277 | select FEATURE_WTMP |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 278 | help |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 279 | '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] | 280 | |
Bernhard Reutner-Fischer | 69d5ba2 | 2008-05-22 21:56:26 +0000 | [diff] [blame] | 281 | choice |
| 282 | prompt "Choose last implementation" |
Denis Vlasenko | 869d3d3 | 2008-05-22 02:07:58 +0000 | [diff] [blame] | 283 | depends on LAST |
Bernhard Reutner-Fischer | 69d5ba2 | 2008-05-22 21:56:26 +0000 | [diff] [blame] | 284 | default FEATURE_LAST_SMALL |
| 285 | |
| 286 | config FEATURE_LAST_SMALL |
| 287 | bool "small" |
| 288 | help |
| 289 | This is a small version of last with just the basic set of |
| 290 | features. |
| 291 | |
| 292 | config FEATURE_LAST_FANCY |
| 293 | bool "huge" |
Denis Vlasenko | 869d3d3 | 2008-05-22 02:07:58 +0000 | [diff] [blame] | 294 | help |
| 295 | 'last' displays detailed information about the last users that |
| 296 | logged into the system (mimics sysvinit last). +900 bytes. |
Bernhard Reutner-Fischer | 69d5ba2 | 2008-05-22 21:56:26 +0000 | [diff] [blame] | 297 | endchoice |
Denis Vlasenko | 869d3d3 | 2008-05-22 02:07:58 +0000 | [diff] [blame] | 298 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 299 | config LESS |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 300 | bool "less" |
| 301 | default n |
| 302 | help |
| 303 | 'less' is a pager, meaning that it displays text files. It possesses |
| 304 | a wide array of features, and is an improvement over 'more'. |
| 305 | |
Denis Vlasenko | 9a7cef9 | 2006-12-20 02:46:48 +0000 | [diff] [blame] | 306 | config FEATURE_LESS_MAXLINES |
| 307 | int "Max number of input lines less will try to eat" |
| 308 | default 9999999 |
| 309 | depends on LESS |
| 310 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 311 | config FEATURE_LESS_BRACKETS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 312 | bool "Enable bracket searching" |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 313 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 314 | depends on LESS |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 315 | help |
| 316 | This option adds the capability to search for matching left and right |
| 317 | brackets, facilitating programming. |
| 318 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 319 | config FEATURE_LESS_FLAGS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 320 | bool "Enable extra flags" |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 321 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 322 | depends on LESS |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 323 | help |
| 324 | The extra flags provided do the following: |
| 325 | |
| 326 | The -M flag enables a more sophisticated status line. |
| 327 | The -m flag enables a simpler status line with a percentage. |
| 328 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 329 | config FEATURE_LESS_MARKS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 330 | bool "Enable marks" |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 331 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 332 | depends on LESS |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 333 | help |
| 334 | Marks enable positions in a file to be stored for easy reference. |
| 335 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 336 | config FEATURE_LESS_REGEXP |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 337 | bool "Enable regular expressions" |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 338 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 339 | depends on LESS |
Rob Landley | 9200e79 | 2005-09-15 19:26:59 +0000 | [diff] [blame] | 340 | help |
| 341 | Enable regular expressions, allowing complex file searches. |
| 342 | |
Denis Vlasenko | 53c80f0 | 2008-10-24 22:43:27 +0000 | [diff] [blame] | 343 | config FEATURE_LESS_WINCH |
| 344 | bool "Enable automatic resizing on window size changes" |
| 345 | default n |
| 346 | depends on LESS |
| 347 | help |
| 348 | Makes less track window size changes. |
| 349 | |
Denis Vlasenko | 4cfa5a2 | 2008-11-10 09:33:42 +0000 | [diff] [blame] | 350 | config FEATURE_LESS_DASHCMD |
| 351 | bool "Enable flag changes ('-' command)" |
| 352 | default n |
| 353 | depends on LESS |
| 354 | help |
| 355 | This enables the ability to change command-line flags within |
| 356 | less itself ('-' keyboard command). |
| 357 | |
| 358 | config FEATURE_LESS_LINENUMS |
| 359 | bool "Enable dynamic switching of line numbers" |
| 360 | default n |
| 361 | depends on FEATURE_LESS_DASHCMD |
| 362 | help |
| 363 | Enable "-N" command. |
| 364 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 365 | config HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 366 | bool "hdparm" |
| 367 | default n |
| 368 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 369 | Get/Set hard drive parameters. Primarily intended for ATA |
| 370 | drives. Adds about 13k (or around 30k if you enable the |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 371 | FEATURE_HDPARM_GET_IDENTITY option).... |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 372 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 373 | config FEATURE_HDPARM_GET_IDENTITY |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 374 | bool "Support obtaining detailed information directly from drives" |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 375 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 376 | depends on HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 377 | help |
Rob Landley | 0620841 | 2006-05-31 22:52:57 +0000 | [diff] [blame] | 378 | Enables the -I and -i options to obtain detailed information |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 379 | directly from drives about their capabilities and supported ATA |
Rob Landley | 0620841 | 2006-05-31 22:52:57 +0000 | [diff] [blame] | 380 | feature set. If no device name is specified, hdparm will read |
| 381 | identify data from stdin. Enabling this option will add about 16k... |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 382 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 383 | config FEATURE_HDPARM_HDIO_SCAN_HWIF |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 384 | bool "Register an IDE interface (DANGEROUS)" |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 385 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 386 | depends on HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 387 | help |
| 388 | Enables the 'hdparm -R' option to register an IDE interface. |
| 389 | This is dangerous stuff, so you should probably say N. |
| 390 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 391 | config FEATURE_HDPARM_HDIO_UNREGISTER_HWIF |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 392 | bool "Un-register an IDE interface (DANGEROUS)" |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 393 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 394 | depends on HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 395 | help |
| 396 | Enables the 'hdparm -U' option to un-register an IDE interface. |
| 397 | This is dangerous stuff, so you should probably say N. |
| 398 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 399 | config FEATURE_HDPARM_HDIO_DRIVE_RESET |
Denis Vlasenko | 97faf53 | 2008-07-15 22:01:49 +0000 | [diff] [blame] | 400 | bool "Perform device reset (DANGEROUS)" |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 401 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 402 | depends on HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 403 | help |
| 404 | Enables the 'hdparm -w' option to perform a device reset. |
| 405 | This is dangerous stuff, so you should probably say N. |
| 406 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 407 | config FEATURE_HDPARM_HDIO_TRISTATE_HWIF |
Denis Vlasenko | 97faf53 | 2008-07-15 22:01:49 +0000 | [diff] [blame] | 408 | bool "Tristate device for hotswap (DANGEROUS)" |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 409 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 410 | depends on HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 411 | help |
| 412 | Enables the 'hdparm -x' option to tristate device for hotswap, |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 413 | and the '-b' option to get/set bus state. This is dangerous |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 414 | stuff, so you should probably say N. |
| 415 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 416 | config FEATURE_HDPARM_HDIO_GETSET_DMA |
Denis Vlasenko | a83dbd4 | 2009-03-29 17:13:20 +0000 | [diff] [blame] | 417 | bool "Get/set using_dma flag" |
Eric Andersen | 0a57a79 | 2003-08-06 08:57:35 +0000 | [diff] [blame] | 418 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 419 | depends on HDPARM |
Eric Andersen | 0a57a79 | 2003-08-06 08:57:35 +0000 | [diff] [blame] | 420 | help |
| 421 | Enables the 'hdparm -d' option to get/set using_dma flag. |
Eric Andersen | 0a57a79 | 2003-08-06 08:57:35 +0000 | [diff] [blame] | 422 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 423 | config MAKEDEVS |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 424 | bool "makedevs" |
| 425 | default n |
| 426 | help |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 427 | 'makedevs' is a utility used to create a batch of devices with |
| 428 | one command. |
| 429 | . |
| 430 | There are two choices for command line behaviour, the interface |
| 431 | as used by LEAF/Linux Router Project, or a device table file. |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 432 | . |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 433 | 'leaf' is traditionally what busybox follows, it allows multiple |
| 434 | devices of a particluar type to be created per command. |
| 435 | e.g. /dev/hda[0-9] |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 436 | Device properties are passed as command line arguments. |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 437 | . |
| 438 | 'table' reads device properties from a file or stdin, allowing |
Bernhard Reutner-Fischer | 771b186 | 2006-03-24 14:30:05 +0000 | [diff] [blame] | 439 | a batch of unrelated devices to be made with one command. |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 440 | User/group names are allowed as an alternative to uid/gid. |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 441 | |
| 442 | choice |
| 443 | prompt "Choose makedevs behaviour" |
Mike Frysinger | 08e7097 | 2007-01-24 09:14:09 +0000 | [diff] [blame] | 444 | depends on MAKEDEVS |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 445 | default FEATURE_MAKEDEVS_TABLE |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 446 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 447 | config FEATURE_MAKEDEVS_LEAF |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 448 | bool "leaf" |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 449 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 450 | config FEATURE_MAKEDEVS_TABLE |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 451 | bool "table" |
| 452 | |
| 453 | endchoice |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 454 | |
Denis Vlasenko | ffa4499 | 2008-04-13 08:20:00 +0000 | [diff] [blame] | 455 | config MAN |
| 456 | bool "man" |
| 457 | default n |
| 458 | help |
| 459 | Format and display manual pages. |
| 460 | |
Denis Vlasenko | 23856ab | 2007-09-22 20:51:41 +0000 | [diff] [blame] | 461 | config MICROCOM |
| 462 | bool "microcom" |
| 463 | default n |
| 464 | help |
| 465 | The poor man's minicom utility for chatting with serial port devices. |
| 466 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 467 | config MOUNTPOINT |
Rob Landley | d00b3a5 | 2005-08-20 05:07:08 +0000 | [diff] [blame] | 468 | bool "mountpoint" |
| 469 | default n |
| 470 | help |
| 471 | mountpoint checks if the directory is a mountpoint. |
| 472 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 473 | config MT |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 474 | bool "mt" |
| 475 | default n |
| 476 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 477 | 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] | 478 | to advance or rewind a tape past a specified number of archive |
| 479 | files on the tape. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 480 | |
Denis Vlasenko | c108ed5 | 2006-10-20 19:39:48 +0000 | [diff] [blame] | 481 | config RAIDAUTORUN |
| 482 | bool "raidautorun" |
| 483 | default n |
| 484 | help |
| 485 | raidautorun tells the kernel md driver to |
| 486 | search and start RAID arrays. |
| 487 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 488 | config READAHEAD |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 489 | bool "readahead" |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 490 | default n |
Bernhard Reutner-Fischer | f98d637 | 2007-01-26 09:03:23 +0000 | [diff] [blame] | 491 | depends on LFS |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 492 | help |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 493 | 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] | 494 | subsequent reads on these files will not block on disk I/O. |
| 495 | |
| 496 | This applet just calls the readahead(2) system call on each file. |
| 497 | It is mainly useful in system startup scripts to preload files |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 498 | or executables before they are used. When used at the right time |
Denis Vlasenko | b15ebe4 | 2008-04-13 22:41:27 +0000 | [diff] [blame] | 499 | (in particular when a CPU bound process is running) it can |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 500 | significantly speed up system startup. |
| 501 | |
| 502 | 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] | 503 | run this applet as a background job. |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 504 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 505 | config RUNLEVEL |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 506 | bool "runlevel" |
Bernhard Reutner-Fischer | 62d7acc | 2005-10-28 20:37:03 +0000 | [diff] [blame] | 507 | default n |
| 508 | help |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 509 | find the current and previous system runlevel. |
Bernhard Reutner-Fischer | 62d7acc | 2005-10-28 20:37:03 +0000 | [diff] [blame] | 510 | |
| 511 | This applet uses utmp but does not rely on busybox supporing |
| 512 | utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc. |
| 513 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 514 | config RX |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 515 | bool "rx" |
Glenn L McGrath | 8f3bc4c | 2003-12-20 07:30:35 +0000 | [diff] [blame] | 516 | default n |
| 517 | help |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 518 | Receive files using the Xmodem protocol. |
Glenn L McGrath | 8f3bc4c | 2003-12-20 07:30:35 +0000 | [diff] [blame] | 519 | |
Denis Vlasenko | 376003b | 2008-04-21 05:05:17 +0000 | [diff] [blame] | 520 | config SETSID |
| 521 | bool "setsid" |
Denis Vlasenko | 5014dad | 2008-02-27 11:54:59 +0000 | [diff] [blame] | 522 | default n |
| 523 | help |
Denis Vlasenko | 376003b | 2008-04-21 05:05:17 +0000 | [diff] [blame] | 524 | setsid runs a program in a new session |
Denis Vlasenko | 5014dad | 2008-02-27 11:54:59 +0000 | [diff] [blame] | 525 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 526 | config STRINGS |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 527 | bool "strings" |
| 528 | default n |
| 529 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 530 | strings prints the printable character sequences for each file |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 531 | specified. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 532 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 533 | config TASKSET |
Bernhard Reutner-Fischer | 16d3e4e | 2006-06-07 15:44:59 +0000 | [diff] [blame] | 534 | bool "taskset" |
| 535 | default n |
| 536 | help |
Mike Frysinger | 259472e | 2006-07-03 05:22:36 +0000 | [diff] [blame] | 537 | Retrieve or set a processes's CPU affinity. |
Bernhard Reutner-Fischer | 32eddff | 2006-11-22 16:39:48 +0000 | [diff] [blame] | 538 | This requires sched_{g,s}etaffinity support in your libc. |
| 539 | |
| 540 | config FEATURE_TASKSET_FANCY |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 541 | bool "Fancy output" |
Bernhard Reutner-Fischer | 32eddff | 2006-11-22 16:39:48 +0000 | [diff] [blame] | 542 | default y |
| 543 | depends on TASKSET |
| 544 | help |
| 545 | Add code for fancy output. This merely silences a compiler-warning |
| 546 | and adds about 135 Bytes. May be needed for machines with alot |
| 547 | of CPUs. |
Rob Landley | 12d9419 | 2006-06-30 22:20:43 +0000 | [diff] [blame] | 548 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 549 | config TIME |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 550 | bool "time" |
| 551 | default n |
| 552 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 553 | The time command runs the specified program with the given arguments. |
| 554 | When the command finishes, time writes a message to standard output |
| 555 | giving timing statistics about this program run. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 556 | |
Denis Vlasenko | a9acbe6 | 2008-11-24 13:25:20 +0000 | [diff] [blame] | 557 | config TIMEOUT |
| 558 | bool "timeout" |
| 559 | default n |
| 560 | help |
| 561 | Runs a program and watches it. If it does not terminate in |
| 562 | specified number of seconds, it is sent a signal. |
| 563 | |
Denis Vlasenko | c01af95 | 2007-08-02 22:23:47 +0000 | [diff] [blame] | 564 | config TTYSIZE |
| 565 | bool "ttysize" |
| 566 | default n |
| 567 | help |
| 568 | A replacement for "stty size". Unlike stty, can report only width, |
Bernhard Reutner-Fischer | b111917 | 2008-07-01 12:20:20 +0000 | [diff] [blame] | 569 | only height, or both, in any order. It also does not complain on |
| 570 | error, but returns default 80x24. |
| 571 | Usage in shell scripts: width=`ttysize w`. |
Denis Vlasenko | c01af95 | 2007-08-02 22:23:47 +0000 | [diff] [blame] | 572 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 573 | config WATCHDOG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 574 | bool "watchdog" |
| 575 | default n |
| 576 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 577 | The watchdog utility is used with hardware or software watchdog |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 578 | device drivers. It opens the specified watchdog device special file |
| 579 | and periodically writes a magic character to the device. If the |
Eric Andersen | 795c4ba | 2003-07-22 10:11:48 +0000 | [diff] [blame] | 580 | watchdog applet ever fails to write the magic character within a |
Eric Andersen | ac00aa7 | 2003-07-26 08:07:56 +0000 | [diff] [blame] | 581 | certain amount of time, the watchdog device assumes the system has |
| 582 | hung, and will cause the hardware to reboot. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 583 | |
| 584 | endmenu |