forgot about avn add... :(
[oweals/busybox.git] / miscutils / Config.in
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
8 config ADJTIMEX
9         bool "adjtimex"
10         default n
11         help
12           Adjtimex reads and optionally sets adjustment parameters for
13           the Linux clock adjustment algorithm.
14
15 config BBCONFIG
16         bool "bbconfig"
17         default n
18         help
19           The bbconfig applet will print the config file with which
20           busybox was built.
21
22 config CROND
23         bool "crond"
24         default n
25         select FEATURE_SUID
26         select FEATURE_SYSLOG
27         help
28           Crond is a background daemon that parses individual crontab
29           files and executes commands on behalf of the users in question.
30           This is a port of dcron from slackware.  It uses files of the
31           format /var/spool/cron/crontabs/<username> files, for example:
32               $ cat /var/spool/cron/crontabs/root
33               # Run daily cron jobs at 4:40 every day:
34               40 4 * * * /etc/cron/daily > /dev/null 2>&1
35           Note that Busybox binary must be setuid root for this applet to
36           work properly.
37
38 config DEBUG_CROND_OPTION
39         bool "Support debug option -d"
40         depends on CROND
41         default n
42         help
43           Support option -d to enter debug mode.
44
45 config FEATURE_CROND_CALL_SENDMAIL
46         bool "Using /usr/sbin/sendmail?"
47         default n
48         depends on CROND
49         help
50           Support calling /usr/sbin/sendmail for send cmd outputs.
51
52 config CRONTAB
53         bool "crontab"
54         default n
55         select FEATURE_SUID
56         help
57           Crontab manipulates the crontab for a particular user.  Only
58           the superuser may specify a different user and/or crontab directory.
59
60 config DC
61         bool "dc"
62         default n
63         help
64           Dc is a reverse-polish desk calculator which supports unlimited
65           precision arithmetic.
66
67 config DEVFSD
68         bool "devfsd (obsolete)"
69         default n
70         select FEATURE_SYSLOG
71         help
72           This is deprecated, and will be removed at the end of 2008.
73
74           Provides compatibility with old device names on a devfs systems.
75           You should set it to true if you have devfs enabled.
76           The following keywords in devsfd.conf are supported:
77           "CLEAR_CONFIG", "INCLUDE", "OPTIONAL_INCLUDE", "RESTORE",
78           "PERMISSIONS", "EXECUTE", "COPY", "IGNORE",
79           "MKOLDCOMPAT", "MKNEWCOMPAT","RMOLDCOMPAT", "RMNEWCOMPAT".
80
81            But only if they are written UPPERCASE!!!!!!!!
82
83 config DEVFSD_MODLOAD
84         bool "Adds support for MODLOAD keyword in devsfd.conf"
85         default n
86         depends on DEVFSD
87         help
88           This actually doesn't work with busybox modutils but needs
89           the external modutils.
90
91 config DEVFSD_FG_NP
92         bool "Enables the -fg and -np options"
93         default n
94         depends on DEVFSD
95         help
96                 -fg     Run the daemon in the foreground.
97                 -np     Exit  after  parsing  the configuration file. Do not poll for events.
98
99 config DEVFSD_VERBOSE
100         bool "Increases logging (and size)"
101         default n
102         depends on DEVFSD
103         help
104           Increases logging to stderr or syslog.
105
106 config FEATURE_DEVFS
107         bool "  Use devfs names for all devices (obsolete)"
108         default n
109         help
110           This is obsolete and will be going away at the end of 2008..
111
112           This tells busybox to look for names like /dev/loop/0 instead of
113           /dev/loop0.  If your /dev directory has normal names instead of
114           devfs names, you don't want this.
115
116 config EJECT
117         bool "eject"
118         default n
119         help
120           Used to eject cdroms.  (defaults to /dev/cdrom)
121
122 config LAST
123         bool "last"
124         default n
125         select FEATURE_WTMP
126         help
127           'last' displays a list of the last users that logged into the system.
128
129 config LESS
130         bool "less"
131         default n
132         help
133           'less' is a pager, meaning that it displays text files. It possesses
134           a wide array of features, and is an improvement over 'more'.
135
136 config FEATURE_LESS_BRACKETS
137         bool "Enable bracket searching"
138         default y
139         depends on LESS
140         help
141           This option adds the capability to search for matching left and right
142           brackets, facilitating programming.
143
144 config FEATURE_LESS_FLAGS
145         bool "Enable extra flags"
146         default y
147         depends on LESS
148         help
149           The extra flags provided do the following:
150
151           The -M flag enables a more sophisticated status line.
152           The -m flag enables a simpler status line with a percentage.
153
154 config FEATURE_LESS_FLAGCS
155         bool "Enable flag changes"
156         default n
157         depends on LESS
158         help
159           This enables the ability to change command-line flags within
160           less itself.
161
162 config FEATURE_LESS_MARKS
163         bool "Enable marks"
164         default n
165         depends on LESS
166         help
167           Marks enable positions in a file to be stored for easy reference.
168
169 config FEATURE_LESS_REGEXP
170         bool "Enable regular expressions"
171         default n
172         depends on LESS
173         help
174           Enable regular expressions, allowing complex file searches.
175
176 config HDPARM
177         bool "hdparm"
178         default n
179         help
180           Get/Set hard drive parameters.  Primarily intended for ATA
181           drives.  Adds about 13k (or around 30k if you enable the
182           FEATURE_HDPARM_GET_IDENTITY option)....
183
184 config FEATURE_HDPARM_GET_IDENTITY
185         bool "Support obtaining detailed information directly from drives"
186         default y
187         depends on HDPARM
188         help
189           Enables the -I and -i options to obtain detailed information
190           directly from drives about their capabilities and supported ATA
191           feature set. If no device name is specified, hdparm will read
192           identify data from stdin. Enabling this option will add about 16k...
193
194 config FEATURE_HDPARM_HDIO_SCAN_HWIF
195         bool "Register an IDE interface (DANGEROUS)"
196         default n
197         depends on HDPARM
198         help
199           Enables the 'hdparm -R' option to register an IDE interface.
200           This is dangerous stuff, so you should probably say N.
201
202 config FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
203         bool "Un-register an IDE interface (DANGEROUS)"
204         default n
205         depends on HDPARM
206         help
207           Enables the 'hdparm -U' option to un-register an IDE interface.
208           This is dangerous stuff, so you should probably say N.
209
210 config FEATURE_HDPARM_HDIO_DRIVE_RESET
211         bool "perform device reset (DANGEROUS)"
212         default n
213         depends on HDPARM
214         help
215           Enables the 'hdparm -w' option to perform a device reset.
216           This is dangerous stuff, so you should probably say N.
217
218 config FEATURE_HDPARM_HDIO_TRISTATE_HWIF
219         bool "tristate device for hotswap (DANGEROUS)"
220         default n
221         depends on HDPARM
222         help
223           Enables the 'hdparm -x' option to tristate device for hotswap,
224           and the '-b' option to get/set bus state.  This is dangerous
225           stuff, so you should probably say N.
226
227 config FEATURE_HDPARM_HDIO_GETSET_DMA
228         bool "get/set using_dma flag (DANGEROUS)"
229         default n
230         depends on HDPARM
231         help
232           Enables the 'hdparm -d' option to get/set using_dma flag.
233           This is dangerous stuff, so you should probably say N.
234
235 config MAKEDEVS
236         bool "makedevs"
237         default n
238         help
239           'makedevs' is a utility used to create a batch of devices with
240           one command.
241           .
242           There are two choices for command line behaviour, the interface
243           as used by LEAF/Linux Router Project, or a device table file.
244           .
245           'leaf' is traditionally what busybox follows, it allows multiple
246           devices of a particluar type to be created per command.
247           e.g. /dev/hda[0-9]
248           Device properties are passed as command line arguments.
249           .
250           'table' reads device properties from a file or stdin, allowing
251           a batch of unrelated devices to be made with one command.
252           User/group names are allowed as an alternative to uid/gid.
253
254 choice
255         prompt "Choose makedevs behaviour"
256         depends MAKEDEVS
257         default FEATURE_MAKEDEVS_TABLE
258
259 config FEATURE_MAKEDEVS_LEAF
260         bool "leaf"
261
262 config FEATURE_MAKEDEVS_TABLE
263         bool "table"
264
265 endchoice
266
267 config MOUNTPOINT
268         bool "mountpoint"
269         default n
270         help
271           mountpoint checks if the directory is a mountpoint.
272
273 config MT
274         bool "mt"
275         default n
276         help
277           mt is used to control tape devices.  You can use the mt utility
278           to advance or rewind a tape past a specified number of archive
279           files on the tape.
280
281 config NMETER
282         bool "nmeter"
283         default n
284         help
285           nmeter prints various system parameters continuously.
286
287 config RAIDAUTORUN
288         bool "raidautorun"
289         default n
290         help
291           raidautorun tells the kernel md driver to
292           search and start RAID arrays.
293
294 config READAHEAD
295         bool "readahead"
296         default n
297         help
298           Preload the files listed on the command line into RAM cache so that
299           subsequent reads on these files will not block on disk I/O.
300
301           This applet just calls the readahead(2) system call on each file.
302           It is mainly useful in system startup scripts to preload files
303           or executables before they are used.  When used at the right time
304           (in particular when a CPU boundprocess is running) it can
305           significantly speed up system startup.
306
307           As readahead(2) blocks until each file has been read, it is best to
308           run this applet as a background job.
309
310 config RUNLEVEL
311         bool "runlevel"
312         default n
313         help
314           find the current and previous system runlevel.
315
316           This applet uses utmp but does not rely on busybox supporing
317           utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc.
318
319 config RX
320         bool "rx"
321         default n
322         help
323           Receive files using the Xmodem protocol.
324
325 config STRINGS
326         bool "strings"
327         default n
328         help
329           strings prints the printable character sequences for each file
330           specified.
331
332 config SETSID
333         bool "setsid"
334         default n
335         help
336           setsid runs a program in a new session
337
338 config TASKSET
339         bool "taskset"
340         default n
341         help
342           Retrieve or set a processes's CPU affinity.
343
344 config TIME
345         bool "time"
346         default n
347         help
348           The time command runs the specified program with the given arguments.
349           When the command finishes, time writes a message to standard output
350           giving timing statistics about this program run.
351
352 config WATCHDOG
353         bool "watchdog"
354         default n
355         help
356           The watchdog utility is used with hardware or software watchdog
357           device drivers.  It opens the specified watchdog device special file
358           and periodically writes a magic character to the device.  If the
359           watchdog applet ever fails to write the magic character within a
360           certain amount of time, the watchdog device assumes the system has
361           hung, and will cause the hardware to reboot.
362
363 endmenu
364