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