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 | |
Denys Vlasenko | d70e0e9 | 2010-06-08 12:15:11 +0200 | [diff] [blame] | 8 | INSERT |
| 9 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 10 | config ADJTIMEX |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 11 | bool "adjtimex" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 12 | default y |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 13 | select PLATFORM_LINUX |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 14 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 15 | Adjtimex reads and optionally sets adjustment parameters for |
| 16 | the Linux clock adjustment algorithm. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 17 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 18 | config BBCONFIG |
Mike Frysinger | 9ed1094 | 2005-09-18 04:43:32 +0000 | [diff] [blame] | 19 | bool "bbconfig" |
| 20 | default n |
| 21 | help |
| 22 | The bbconfig applet will print the config file with which |
| 23 | busybox was built. |
| 24 | |
Denys Vlasenko | 9ce07e7 | 2010-08-29 14:36:11 +0200 | [diff] [blame] | 25 | config FEATURE_COMPRESS_BBCONFIG |
| 26 | bool "Compress bbconfig data" |
| 27 | default y |
| 28 | depends on BBCONFIG |
| 29 | help |
| 30 | Store bbconfig data in compressed form, uncompress them on-the-fly |
| 31 | before output. |
| 32 | |
| 33 | If you have a really tiny busybox with few applets enabled (and |
| 34 | bunzip2 isn't one of them), the overhead of the decompressor might |
| 35 | be noticeable. Also, if you run executables directly from ROM |
| 36 | and have very little memory, this might not be a win. Otherwise, |
| 37 | you probably want this. |
| 38 | |
Bernhard Reutner-Fischer | 45de074 | 2009-08-21 13:18:31 +0200 | [diff] [blame] | 39 | config BEEP |
| 40 | bool "beep" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 41 | default y |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 42 | select PLATFORM_LINUX |
Bernhard Reutner-Fischer | 45de074 | 2009-08-21 13:18:31 +0200 | [diff] [blame] | 43 | help |
| 44 | The beep applets beeps in a given freq/Hz. |
| 45 | |
Bernhard Reutner-Fischer | 00ea82e | 2009-08-21 14:40:29 +0200 | [diff] [blame] | 46 | config FEATURE_BEEP_FREQ |
| 47 | int "default frequency" |
| 48 | range 0 2147483647 |
| 49 | default 4000 |
| 50 | depends on BEEP |
| 51 | help |
| 52 | Frequency for default beep. |
| 53 | |
Denys Vlasenko | 0da1c0a | 2009-08-22 18:00:39 +0200 | [diff] [blame] | 54 | config FEATURE_BEEP_LENGTH_MS |
Bernhard Reutner-Fischer | 00ea82e | 2009-08-21 14:40:29 +0200 | [diff] [blame] | 55 | int "default length" |
| 56 | range 0 2147483647 |
| 57 | default 30 |
| 58 | depends on BEEP |
| 59 | help |
| 60 | Length in ms for default beep. |
| 61 | |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 62 | config CHAT |
| 63 | bool "chat" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 64 | default y |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 65 | help |
| 66 | Simple chat utility. |
| 67 | |
| 68 | config FEATURE_CHAT_NOFAIL |
| 69 | bool "Enable NOFAIL expect strings" |
Denis Vlasenko | 8617454 | 2008-02-19 11:36:22 +0000 | [diff] [blame] | 70 | depends on CHAT |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 71 | default y |
| 72 | help |
| 73 | When enabled expect strings which are started with a dash trigger |
| 74 | no-fail mode. That is when expectation is not met within timeout |
| 75 | the script is not terminated but sends next SEND string and waits |
| 76 | for next EXPECT string. This allows to compose far more flexible |
| 77 | scripts. |
| 78 | |
| 79 | config FEATURE_CHAT_TTY_HIFI |
| 80 | bool "Force STDIN to be a TTY" |
Denis Vlasenko | 8617454 | 2008-02-19 11:36:22 +0000 | [diff] [blame] | 81 | depends on CHAT |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 82 | default n |
| 83 | help |
| 84 | Original chat always treats STDIN as a TTY device and sets for it |
| 85 | so-called raw mode. This option turns on such behaviour. |
| 86 | |
| 87 | config FEATURE_CHAT_IMPLICIT_CR |
| 88 | bool "Enable implicit Carriage Return" |
Denis Vlasenko | 8617454 | 2008-02-19 11:36:22 +0000 | [diff] [blame] | 89 | depends on CHAT |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 90 | default y |
| 91 | help |
| 92 | When enabled make chat to terminate all SEND strings with a "\r" |
| 93 | unless "\c" is met anywhere in the string. |
| 94 | |
| 95 | config FEATURE_CHAT_SWALLOW_OPTS |
| 96 | bool "Swallow options" |
Denis Vlasenko | 8617454 | 2008-02-19 11:36:22 +0000 | [diff] [blame] | 97 | depends on CHAT |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 98 | default y |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 99 | help |
| 100 | Busybox chat require no options. To make it not fail when used |
| 101 | in place of original chat (which has a bunch of options) turn |
| 102 | this on. |
| 103 | |
| 104 | config FEATURE_CHAT_SEND_ESCAPES |
| 105 | bool "Support weird SEND escapes" |
Denis Vlasenko | 8617454 | 2008-02-19 11:36:22 +0000 | [diff] [blame] | 106 | depends on CHAT |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 107 | default y |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 108 | help |
| 109 | Original chat uses some escape sequences in SEND arguments which |
| 110 | are not sent to device but rather performs special actions. |
| 111 | E.g. "\K" means to send a break sequence to device. |
| 112 | "\d" delays execution for a second, "\p" -- for a 1/100 of second. |
| 113 | Before turning this option on think twice: do you really need them? |
| 114 | |
| 115 | config FEATURE_CHAT_VAR_ABORT_LEN |
| 116 | bool "Support variable-length ABORT conditions" |
Denis Vlasenko | 8617454 | 2008-02-19 11:36:22 +0000 | [diff] [blame] | 117 | depends on CHAT |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 118 | default y |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 119 | help |
| 120 | Original chat uses fixed 50-bytes length ABORT conditions. Say N here. |
| 121 | |
| 122 | config FEATURE_CHAT_CLR_ABORT |
| 123 | bool "Support revoking of ABORT conditions" |
Denis Vlasenko | 8617454 | 2008-02-19 11:36:22 +0000 | [diff] [blame] | 124 | depends on CHAT |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 125 | default y |
Denis Vlasenko | 5233cd3 | 2008-02-18 23:24:46 +0000 | [diff] [blame] | 126 | help |
| 127 | Support CLR_ABORT directive. |
| 128 | |
Bernhard Reutner-Fischer | 71bc71a | 2007-03-09 16:56:38 +0000 | [diff] [blame] | 129 | config CHRT |
| 130 | bool "chrt" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 131 | default y |
Bernhard Reutner-Fischer | 71bc71a | 2007-03-09 16:56:38 +0000 | [diff] [blame] | 132 | help |
| 133 | manipulate real-time attributes of a process. |
| 134 | This requires sched_{g,s}etparam support in your libc. |
| 135 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 136 | config CRONTAB |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 137 | bool "crontab" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 138 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 139 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 140 | Crontab manipulates the crontab for a particular user. Only |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 141 | the superuser may specify a different user and/or crontab directory. |
Denis Vlasenko | 4e6c812 | 2008-03-12 22:10:25 +0000 | [diff] [blame] | 142 | Note that Busybox binary must be setuid root for this applet to |
| 143 | work properly. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 144 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 145 | config DC |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 146 | bool "dc" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 147 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 148 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 149 | Dc is a reverse-polish desk calculator which supports unlimited |
| 150 | precision arithmetic. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 151 | |
Denis Vlasenko | 0783230 | 2008-10-20 08:43:10 +0000 | [diff] [blame] | 152 | config FEATURE_DC_LIBM |
| 153 | bool "Enable power and exp functions (requires libm)" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 154 | default y |
Denis Vlasenko | 0783230 | 2008-10-20 08:43:10 +0000 | [diff] [blame] | 155 | depends on DC |
| 156 | help |
| 157 | Enable power and exp functions. |
| 158 | NOTE: This will require libm to be present for linking. |
| 159 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 160 | config DEVFSD |
Rob Landley | 4c5ad2f | 2006-06-07 20:11:53 +0000 | [diff] [blame] | 161 | bool "devfsd (obsolete)" |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 162 | default n |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 163 | select PLATFORM_LINUX |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 164 | select FEATURE_SYSLOG |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 165 | help |
Bernhard Reutner-Fischer | 52b56b7 | 2009-02-14 12:19:37 +0000 | [diff] [blame] | 166 | This is deprecated and should NOT be used anymore. |
| 167 | Use linux >= 2.6 (optionally with hotplug) and mdev instead! |
| 168 | See docs/mdev.txt for detailed instructions on how to use mdev |
| 169 | instead. |
Rob Landley | 4c5ad2f | 2006-06-07 20:11:53 +0000 | [diff] [blame] | 170 | |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 171 | Provides compatibility with old device names on a devfs systems. |
| 172 | You should set it to true if you have devfs enabled. |
Eric Andersen | f18bd89 | 2003-12-19 11:07:59 +0000 | [diff] [blame] | 173 | The following keywords in devsfd.conf are supported: |
| 174 | "CLEAR_CONFIG", "INCLUDE", "OPTIONAL_INCLUDE", "RESTORE", |
| 175 | "PERMISSIONS", "EXECUTE", "COPY", "IGNORE", |
| 176 | "MKOLDCOMPAT", "MKNEWCOMPAT","RMOLDCOMPAT", "RMNEWCOMPAT". |
| 177 | |
Denis Vlasenko | 4cfa5a2 | 2008-11-10 09:33:42 +0000 | [diff] [blame] | 178 | But only if they are written UPPERCASE!!!!!!!! |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 179 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 180 | config DEVFSD_MODLOAD |
Eric Andersen | f18bd89 | 2003-12-19 11:07:59 +0000 | [diff] [blame] | 181 | bool "Adds support for MODLOAD keyword in devsfd.conf" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 182 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 183 | depends on DEVFSD |
Glenn L McGrath | 3860b2e | 2003-11-30 23:46:06 +0000 | [diff] [blame] | 184 | help |
Rob Landley | 4c5ad2f | 2006-06-07 20:11:53 +0000 | [diff] [blame] | 185 | This actually doesn't work with busybox modutils but needs |
| 186 | the external modutils. |
Glenn L McGrath | 3860b2e | 2003-11-30 23:46:06 +0000 | [diff] [blame] | 187 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 188 | config DEVFSD_FG_NP |
Eric Andersen | f18bd89 | 2003-12-19 11:07:59 +0000 | [diff] [blame] | 189 | bool "Enables the -fg and -np options" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 190 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 191 | depends on DEVFSD |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 192 | help |
Bernhard Reutner-Fischer | b111917 | 2008-07-01 12:20:20 +0000 | [diff] [blame] | 193 | -fg Run the daemon in the foreground. |
| 194 | -np Exit after parsing the configuration file. |
| 195 | Do not poll for events. |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 196 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 197 | config DEVFSD_VERBOSE |
Eric Andersen | f18bd89 | 2003-12-19 11:07:59 +0000 | [diff] [blame] | 198 | bool "Increases logging (and size)" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 199 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 200 | depends on DEVFSD |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 201 | help |
Eric Andersen | f18bd89 | 2003-12-19 11:07:59 +0000 | [diff] [blame] | 202 | Increases logging to stderr or syslog. |
Glenn L McGrath | 17d21fa | 2003-10-09 11:46:23 +0000 | [diff] [blame] | 203 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 204 | config FEATURE_DEVFS |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 205 | bool "Use devfs names for all devices (obsolete)" |
Rob Landley | 4c5ad2f | 2006-06-07 20:11:53 +0000 | [diff] [blame] | 206 | default n |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 207 | select PLATFORM_LINUX |
Rob Landley | 4c5ad2f | 2006-06-07 20:11:53 +0000 | [diff] [blame] | 208 | help |
Bernhard Reutner-Fischer | 52b56b7 | 2009-02-14 12:19:37 +0000 | [diff] [blame] | 209 | This is obsolete and should NOT be used anymore. |
| 210 | Use linux >= 2.6 (optionally with hotplug) and mdev instead! |
Rob Landley | 1f9145c | 2006-07-12 21:31:16 +0000 | [diff] [blame] | 211 | |
Bernhard Reutner-Fischer | 52b56b7 | 2009-02-14 12:19:37 +0000 | [diff] [blame] | 212 | For legacy systems -- if there is no way around devfsd -- this |
| 213 | 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] | 214 | /dev/loop0. If your /dev directory has normal names instead of |
Rob Landley | 4c5ad2f | 2006-06-07 20:11:53 +0000 | [diff] [blame] | 215 | devfs names, you don't want this. |
| 216 | |
Denis Vlasenko | c94fa56 | 2008-10-26 11:08:14 +0000 | [diff] [blame] | 217 | config DEVMEM |
| 218 | bool "devmem" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 219 | default y |
Denis Vlasenko | c94fa56 | 2008-10-26 11:08:14 +0000 | [diff] [blame] | 220 | help |
| 221 | devmem is a small program that reads and writes from physical |
| 222 | memory using /dev/mem. |
| 223 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 224 | config EJECT |
Mike Frysinger | 55e2cf6 | 2005-05-11 00:25:47 +0000 | [diff] [blame] | 225 | bool "eject" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 226 | default y |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 227 | select PLATFORM_LINUX |
Mike Frysinger | 55e2cf6 | 2005-05-11 00:25:47 +0000 | [diff] [blame] | 228 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 229 | Used to eject cdroms. (defaults to /dev/cdrom) |
Mike Frysinger | 55e2cf6 | 2005-05-11 00:25:47 +0000 | [diff] [blame] | 230 | |
Bernhard Reutner-Fischer | afdad65 | 2008-02-08 15:04:00 +0000 | [diff] [blame] | 231 | config FEATURE_EJECT_SCSI |
Denis Vlasenko | 08ec67b | 2008-03-26 13:32:30 +0000 | [diff] [blame] | 232 | bool "SCSI support" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 233 | default y |
Denis Vlasenko | 08ec67b | 2008-03-26 13:32:30 +0000 | [diff] [blame] | 234 | depends on EJECT |
| 235 | help |
| 236 | Add the -s option to eject, this allows to eject SCSI-Devices and |
| 237 | usb-storage devices. |
| 238 | |
| 239 | config FBSPLASH |
| 240 | bool "fbsplash" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 241 | default y |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 242 | select PLATFORM_LINUX |
Denis Vlasenko | 08ec67b | 2008-03-26 13:32:30 +0000 | [diff] [blame] | 243 | help |
| 244 | Shows splash image and progress bar on framebuffer device. |
| 245 | Can be used during boot phase of an embedded device. ~2kb. |
| 246 | Usage: |
| 247 | - use kernel option 'vga=xxx' or otherwise enable fb device. |
Denis Vlasenko | 25a9c17 | 2008-03-26 15:12:11 +0000 | [diff] [blame] | 248 | - put somewhere fbsplash.cfg file and an image in .ppm format. |
Denis Vlasenko | 08ec67b | 2008-03-26 13:32:30 +0000 | [diff] [blame] | 249 | - $ setsid fbsplash [params] & |
Denis Vlasenko | 25a9c17 | 2008-03-26 15:12:11 +0000 | [diff] [blame] | 250 | -c: hide cursor |
| 251 | -d /dev/fbN: framebuffer device (if not /dev/fb0) |
| 252 | -s path_to_image_file (can be "-" for stdin) |
Denis Vlasenko | 72b3442 | 2008-03-27 13:14:29 +0000 | [diff] [blame] | 253 | -i path_to_cfg_file (can be "-" for stdin) |
Denis Vlasenko | 25a9c17 | 2008-03-26 15:12:11 +0000 | [diff] [blame] | 254 | -f path_to_fifo (can be "-" for stdin) |
| 255 | - if you want to run it only in presence of kernel parameter: |
Denis Vlasenko | 08ec67b | 2008-03-26 13:32:30 +0000 | [diff] [blame] | 256 | grep -q "fbsplash=on" </proc/cmdline && setsid fbsplash [params] & |
| 257 | - commands for fifo: |
| 258 | "NN" (ASCII decimal number) - percentage to show on progress bar |
Denis Vlasenko | 72b3442 | 2008-03-27 13:14:29 +0000 | [diff] [blame] | 259 | "exit" - well you guessed it |
Bernhard Reutner-Fischer | afdad65 | 2008-02-08 15:04:00 +0000 | [diff] [blame] | 260 | |
Stefan Seyfried | d095fd4 | 2009-11-21 18:32:19 +0100 | [diff] [blame] | 261 | config FLASHCP |
| 262 | bool "flashcp" |
Denys Vlasenko | 6ac37da | 2010-07-14 08:33:20 +0200 | [diff] [blame] | 263 | default n # doesn't build on Ubuntu 8.04 |
Stefan Seyfried | d095fd4 | 2009-11-21 18:32:19 +0100 | [diff] [blame] | 264 | help |
| 265 | The flashcp binary, inspired by mtd-utils as of git head 5eceb74f7. |
| 266 | This utility is used to copy images into a MTD device. |
| 267 | |
Denys Vlasenko | bf2af9a | 2009-05-25 04:15:37 +0200 | [diff] [blame] | 268 | config FLASH_LOCK |
| 269 | bool "flash_lock" |
Denys Vlasenko | 6ac37da | 2010-07-14 08:33:20 +0200 | [diff] [blame] | 270 | default n # doesn't build on Ubuntu 8.04 |
Denys Vlasenko | bf2af9a | 2009-05-25 04:15:37 +0200 | [diff] [blame] | 271 | help |
| 272 | The flash_lock binary from mtd-utils as of git head 5ec0c10d0. This |
| 273 | utility locks part or all of the flash device. |
| 274 | |
| 275 | config FLASH_UNLOCK |
| 276 | bool "flash_unlock" |
Denys Vlasenko | 6ac37da | 2010-07-14 08:33:20 +0200 | [diff] [blame] | 277 | default n # doesn't build on Ubuntu 8.04 |
Denys Vlasenko | bf2af9a | 2009-05-25 04:15:37 +0200 | [diff] [blame] | 278 | help |
| 279 | The flash_unlock binary from mtd-utils as of git head 5ec0c10d0. This |
| 280 | utility unlocks part or all of the flash device. |
| 281 | |
Bernhard Reutner-Fischer | 0d22d17 | 2009-02-18 13:23:46 +0000 | [diff] [blame] | 282 | config FLASH_ERASEALL |
| 283 | bool "flash_eraseall" |
Denys Vlasenko | 6ac37da | 2010-07-14 08:33:20 +0200 | [diff] [blame] | 284 | default n # doesn't build on Ubuntu 8.04 |
Bernhard Reutner-Fischer | 0d22d17 | 2009-02-18 13:23:46 +0000 | [diff] [blame] | 285 | help |
| 286 | The flash_eraseall binary from mtd-utils as of git head c4c6a59eb. |
| 287 | This utility is used to erase the whole MTD device. |
| 288 | |
Denis Vlasenko | 4acdb46 | 2009-01-31 21:45:57 +0000 | [diff] [blame] | 289 | config IONICE |
| 290 | bool "ionice" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 291 | default y |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 292 | select PLATFORM_LINUX |
Denis Vlasenko | 4acdb46 | 2009-01-31 21:45:57 +0000 | [diff] [blame] | 293 | help |
| 294 | Set/set program io scheduling class and priority |
| 295 | Requires kernel >= 2.6.13 |
| 296 | |
Denis Vlasenko | 8e2c9e1 | 2008-05-24 20:47:18 +0000 | [diff] [blame] | 297 | config INOTIFYD |
| 298 | bool "inotifyd" |
Denys Vlasenko | 6ac37da | 2010-07-14 08:33:20 +0200 | [diff] [blame] | 299 | default n # doesn't build on Knoppix 5 |
Denis Vlasenko | 8e2c9e1 | 2008-05-24 20:47:18 +0000 | [diff] [blame] | 300 | help |
Bernhard Reutner-Fischer | b111917 | 2008-07-01 12:20:20 +0000 | [diff] [blame] | 301 | Simple inotify daemon. Reports filesystem changes. Requires |
| 302 | kernel >= 2.6.13 |
Denis Vlasenko | 8e2c9e1 | 2008-05-24 20:47:18 +0000 | [diff] [blame] | 303 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 304 | config LAST |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 305 | bool "last" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 306 | default y |
Denys Vlasenko | 6dbbac5 | 2010-04-06 18:48:32 +0200 | [diff] [blame] | 307 | depends on FEATURE_WTMP |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 308 | help |
Eric Andersen | 2e9c257 | 2003-08-08 22:26:06 +0000 | [diff] [blame] | 309 | '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] | 310 | |
Bernhard Reutner-Fischer | 69d5ba2 | 2008-05-22 21:56:26 +0000 | [diff] [blame] | 311 | choice |
| 312 | prompt "Choose last implementation" |
Denis Vlasenko | 869d3d3 | 2008-05-22 02:07:58 +0000 | [diff] [blame] | 313 | depends on LAST |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 314 | default FEATURE_LAST_FANCY |
Bernhard Reutner-Fischer | 69d5ba2 | 2008-05-22 21:56:26 +0000 | [diff] [blame] | 315 | |
| 316 | config FEATURE_LAST_SMALL |
| 317 | bool "small" |
| 318 | help |
| 319 | This is a small version of last with just the basic set of |
| 320 | features. |
| 321 | |
| 322 | config FEATURE_LAST_FANCY |
| 323 | bool "huge" |
Denis Vlasenko | 869d3d3 | 2008-05-22 02:07:58 +0000 | [diff] [blame] | 324 | help |
| 325 | 'last' displays detailed information about the last users that |
| 326 | logged into the system (mimics sysvinit last). +900 bytes. |
Bernhard Reutner-Fischer | 69d5ba2 | 2008-05-22 21:56:26 +0000 | [diff] [blame] | 327 | endchoice |
Denis Vlasenko | 869d3d3 | 2008-05-22 02:07:58 +0000 | [diff] [blame] | 328 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 329 | config HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 330 | bool "hdparm" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 331 | default y |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 332 | select PLATFORM_LINUX |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 333 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 334 | Get/Set hard drive parameters. Primarily intended for ATA |
| 335 | drives. Adds about 13k (or around 30k if you enable the |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 336 | FEATURE_HDPARM_GET_IDENTITY option).... |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 337 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 338 | config FEATURE_HDPARM_GET_IDENTITY |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 339 | bool "Support obtaining detailed information directly from drives" |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 340 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 341 | depends on HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 342 | help |
Rob Landley | 0620841 | 2006-05-31 22:52:57 +0000 | [diff] [blame] | 343 | Enables the -I and -i options to obtain detailed information |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 344 | directly from drives about their capabilities and supported ATA |
Rob Landley | 0620841 | 2006-05-31 22:52:57 +0000 | [diff] [blame] | 345 | feature set. If no device name is specified, hdparm will read |
| 346 | identify data from stdin. Enabling this option will add about 16k... |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 347 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 348 | config FEATURE_HDPARM_HDIO_SCAN_HWIF |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 349 | bool "Register an IDE interface (DANGEROUS)" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 350 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 351 | depends on HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 352 | help |
| 353 | Enables the 'hdparm -R' option to register an IDE interface. |
| 354 | This is dangerous stuff, so you should probably say N. |
| 355 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 356 | config FEATURE_HDPARM_HDIO_UNREGISTER_HWIF |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 357 | bool "Un-register an IDE interface (DANGEROUS)" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 358 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 359 | depends on HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 360 | help |
| 361 | Enables the 'hdparm -U' option to un-register an IDE interface. |
| 362 | This is dangerous stuff, so you should probably say N. |
| 363 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 364 | config FEATURE_HDPARM_HDIO_DRIVE_RESET |
Denis Vlasenko | 97faf53 | 2008-07-15 22:01:49 +0000 | [diff] [blame] | 365 | bool "Perform device reset (DANGEROUS)" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 366 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 367 | depends on HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 368 | help |
| 369 | Enables the 'hdparm -w' option to perform a device reset. |
| 370 | This is dangerous stuff, so you should probably say N. |
| 371 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 372 | config FEATURE_HDPARM_HDIO_TRISTATE_HWIF |
Denis Vlasenko | 97faf53 | 2008-07-15 22:01:49 +0000 | [diff] [blame] | 373 | bool "Tristate device for hotswap (DANGEROUS)" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 374 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 375 | depends on HDPARM |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 376 | help |
| 377 | Enables the 'hdparm -x' option to tristate device for hotswap, |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 378 | and the '-b' option to get/set bus state. This is dangerous |
Eric Andersen | 3443bd7 | 2003-07-22 07:30:36 +0000 | [diff] [blame] | 379 | stuff, so you should probably say N. |
| 380 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 381 | config FEATURE_HDPARM_HDIO_GETSET_DMA |
Denis Vlasenko | a83dbd4 | 2009-03-29 17:13:20 +0000 | [diff] [blame] | 382 | bool "Get/set using_dma flag" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 383 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 384 | depends on HDPARM |
Eric Andersen | 0a57a79 | 2003-08-06 08:57:35 +0000 | [diff] [blame] | 385 | help |
| 386 | Enables the 'hdparm -d' option to get/set using_dma flag. |
Eric Andersen | 0a57a79 | 2003-08-06 08:57:35 +0000 | [diff] [blame] | 387 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 388 | config MAKEDEVS |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 389 | bool "makedevs" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 390 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 391 | help |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 392 | 'makedevs' is a utility used to create a batch of devices with |
| 393 | one command. |
Denys Vlasenko | 416f040 | 2010-07-29 02:22:43 +0200 | [diff] [blame] | 394 | |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 395 | There are two choices for command line behaviour, the interface |
| 396 | as used by LEAF/Linux Router Project, or a device table file. |
Denys Vlasenko | 416f040 | 2010-07-29 02:22:43 +0200 | [diff] [blame] | 397 | |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 398 | 'leaf' is traditionally what busybox follows, it allows multiple |
| 399 | devices of a particluar type to be created per command. |
| 400 | e.g. /dev/hda[0-9] |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 401 | Device properties are passed as command line arguments. |
Denys Vlasenko | 416f040 | 2010-07-29 02:22:43 +0200 | [diff] [blame] | 402 | |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 403 | 'table' reads device properties from a file or stdin, allowing |
Bernhard Reutner-Fischer | 771b186 | 2006-03-24 14:30:05 +0000 | [diff] [blame] | 404 | a batch of unrelated devices to be made with one command. |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 405 | User/group names are allowed as an alternative to uid/gid. |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 406 | |
| 407 | choice |
| 408 | prompt "Choose makedevs behaviour" |
Mike Frysinger | 08e7097 | 2007-01-24 09:14:09 +0000 | [diff] [blame] | 409 | depends on MAKEDEVS |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 410 | default FEATURE_MAKEDEVS_TABLE |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 411 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 412 | config FEATURE_MAKEDEVS_LEAF |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 413 | bool "leaf" |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 414 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 415 | config FEATURE_MAKEDEVS_TABLE |
Eric Andersen | 3d92562 | 2005-06-09 10:16:02 +0000 | [diff] [blame] | 416 | bool "table" |
| 417 | |
| 418 | endchoice |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 419 | |
Denis Vlasenko | ffa4499 | 2008-04-13 08:20:00 +0000 | [diff] [blame] | 420 | config MAN |
| 421 | bool "man" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 422 | default y |
Denis Vlasenko | ffa4499 | 2008-04-13 08:20:00 +0000 | [diff] [blame] | 423 | help |
| 424 | Format and display manual pages. |
| 425 | |
Denis Vlasenko | 23856ab | 2007-09-22 20:51:41 +0000 | [diff] [blame] | 426 | config MICROCOM |
| 427 | bool "microcom" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 428 | default y |
Denis Vlasenko | 23856ab | 2007-09-22 20:51:41 +0000 | [diff] [blame] | 429 | help |
| 430 | The poor man's minicom utility for chatting with serial port devices. |
| 431 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 432 | config MOUNTPOINT |
Rob Landley | d00b3a5 | 2005-08-20 05:07:08 +0000 | [diff] [blame] | 433 | bool "mountpoint" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 434 | default y |
Rob Landley | d00b3a5 | 2005-08-20 05:07:08 +0000 | [diff] [blame] | 435 | help |
| 436 | mountpoint checks if the directory is a mountpoint. |
| 437 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 438 | config MT |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 439 | bool "mt" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 440 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 441 | help |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 442 | 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] | 443 | to advance or rewind a tape past a specified number of archive |
| 444 | files on the tape. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 445 | |
Denis Vlasenko | c108ed5 | 2006-10-20 19:39:48 +0000 | [diff] [blame] | 446 | config RAIDAUTORUN |
| 447 | bool "raidautorun" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 448 | default y |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 449 | select PLATFORM_LINUX |
Denis Vlasenko | c108ed5 | 2006-10-20 19:39:48 +0000 | [diff] [blame] | 450 | help |
| 451 | raidautorun tells the kernel md driver to |
| 452 | search and start RAID arrays. |
| 453 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 454 | config READAHEAD |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 455 | bool "readahead" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 456 | default y |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 457 | depends on LFS |
| 458 | select PLATFORM_LINUX |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 459 | help |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 460 | 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] | 461 | subsequent reads on these files will not block on disk I/O. |
| 462 | |
| 463 | This applet just calls the readahead(2) system call on each file. |
| 464 | It is mainly useful in system startup scripts to preload files |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 465 | or executables before they are used. When used at the right time |
Denis Vlasenko | b15ebe4 | 2008-04-13 22:41:27 +0000 | [diff] [blame] | 466 | (in particular when a CPU bound process is running) it can |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 467 | significantly speed up system startup. |
| 468 | |
| 469 | 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] | 470 | run this applet as a background job. |
Rob Landley | 0e4690d | 2006-08-20 22:12:18 +0000 | [diff] [blame] | 471 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 472 | config RUNLEVEL |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 473 | bool "runlevel" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 474 | default y |
Mike Frysinger | ca18e25 | 2011-02-06 12:29:25 -0500 | [diff] [blame] | 475 | depends on FEATURE_UTMP |
Bernhard Reutner-Fischer | 62d7acc | 2005-10-28 20:37:03 +0000 | [diff] [blame] | 476 | help |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 477 | find the current and previous system runlevel. |
Bernhard Reutner-Fischer | 62d7acc | 2005-10-28 20:37:03 +0000 | [diff] [blame] | 478 | |
| 479 | This applet uses utmp but does not rely on busybox supporing |
| 480 | utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc. |
| 481 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 482 | config RX |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 483 | bool "rx" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 484 | default y |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 485 | select PLATFORM_LINUX |
Glenn L McGrath | 8f3bc4c | 2003-12-20 07:30:35 +0000 | [diff] [blame] | 486 | help |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 487 | Receive files using the Xmodem protocol. |
Glenn L McGrath | 8f3bc4c | 2003-12-20 07:30:35 +0000 | [diff] [blame] | 488 | |
Denis Vlasenko | 376003b | 2008-04-21 05:05:17 +0000 | [diff] [blame] | 489 | config SETSID |
| 490 | bool "setsid" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 491 | default y |
Denis Vlasenko | 5014dad | 2008-02-27 11:54:59 +0000 | [diff] [blame] | 492 | help |
Denis Vlasenko | 376003b | 2008-04-21 05:05:17 +0000 | [diff] [blame] | 493 | setsid runs a program in a new session |
Denis Vlasenko | 5014dad | 2008-02-27 11:54:59 +0000 | [diff] [blame] | 494 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 495 | config STRINGS |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 496 | bool "strings" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 497 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 498 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 499 | strings prints the printable character sequences for each file |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 500 | specified. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 501 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 502 | config TIME |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 503 | bool "time" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 504 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 505 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 506 | The time command runs the specified program with the given arguments. |
| 507 | When the command finishes, time writes a message to standard output |
| 508 | giving timing statistics about this program run. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 509 | |
Denis Vlasenko | a9acbe6 | 2008-11-24 13:25:20 +0000 | [diff] [blame] | 510 | config TIMEOUT |
| 511 | bool "timeout" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 512 | default y |
Denis Vlasenko | a9acbe6 | 2008-11-24 13:25:20 +0000 | [diff] [blame] | 513 | help |
| 514 | Runs a program and watches it. If it does not terminate in |
| 515 | specified number of seconds, it is sent a signal. |
| 516 | |
Denis Vlasenko | c01af95 | 2007-08-02 22:23:47 +0000 | [diff] [blame] | 517 | config TTYSIZE |
| 518 | bool "ttysize" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 519 | default y |
Denis Vlasenko | c01af95 | 2007-08-02 22:23:47 +0000 | [diff] [blame] | 520 | help |
| 521 | A replacement for "stty size". Unlike stty, can report only width, |
Bernhard Reutner-Fischer | b111917 | 2008-07-01 12:20:20 +0000 | [diff] [blame] | 522 | only height, or both, in any order. It also does not complain on |
| 523 | error, but returns default 80x24. |
| 524 | Usage in shell scripts: width=`ttysize w`. |
Denis Vlasenko | c01af95 | 2007-08-02 22:23:47 +0000 | [diff] [blame] | 525 | |
Matthew Stoltenberg | 4803db5 | 2009-08-13 00:59:32 +0200 | [diff] [blame] | 526 | config VOLNAME |
| 527 | bool "volname" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 528 | default y |
Matthew Stoltenberg | 4803db5 | 2009-08-13 00:59:32 +0200 | [diff] [blame] | 529 | help |
| 530 | Prints a CD-ROM volume name. |
| 531 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 532 | config WATCHDOG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 533 | bool "watchdog" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 534 | default y |
Denys Vlasenko | e3b1a1f | 2011-02-26 22:24:08 +0100 | [diff] [blame] | 535 | select PLATFORM_LINUX |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 536 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 537 | The watchdog utility is used with hardware or software watchdog |
Bernhard Reutner-Fischer | 3e8669f | 2008-07-22 18:27:53 +0000 | [diff] [blame] | 538 | device drivers. It opens the specified watchdog device special file |
| 539 | and periodically writes a magic character to the device. If the |
Eric Andersen | 795c4ba | 2003-07-22 10:11:48 +0000 | [diff] [blame] | 540 | watchdog applet ever fails to write the magic character within a |
Eric Andersen | ac00aa7 | 2003-07-26 08:07:56 +0000 | [diff] [blame] | 541 | certain amount of time, the watchdog device assumes the system has |
| 542 | hung, and will cause the hardware to reboot. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 543 | |
| 544 | endmenu |