Patch from David Meggy to make the swap default to the new version if no
[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 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 CONFIG_CROND
16         bool "crond"
17         default n
18         help
19           Crond is a background daemon that parses individual crontab
20           files and executes commands on behalf of the users in question.
21
22 config CONFIG_FEATURE_CROND_CALL_SENDMAIL
23         bool "  Using /usr/sbin/sendmail?"
24         default n
25         depends on CONFIG_CROND
26         help
27           Support calling /usr/sbin/sendmail for send cmd outputs.
28
29 config CONFIG_CRONTAB
30         bool "crontab"
31         default n
32         help
33           Crontab manipulates the crontab for a particular user.  Only
34           the superuser may specify a different user and/or crontab directory.
35
36 config CONFIG_DC
37         bool "dc"
38         default n
39         help
40           Dc is a reverse-polish desk calculator which supports unlimited
41           precision arithmetic.
42
43 config CONFIG_DEVFSD
44         bool "devfsd"
45         default n
46         help
47           Provides compatibility with old device names on a devfs systems.
48           You should set it to true if you have devfs enabled.
49
50 config CONFIG_DEVFSD_VERBOSE
51         bool "Increases logging to stderr and syslog"
52         default n
53         depends on CONFIG_DEVFSD
54         help
55           Increases logging to stderr and syslog.
56
57 config CONFIG_DEVFSD_DEBUG
58         bool "Adds function names to program output"
59         default n
60         depends on CONFIG_DEVFSD
61         help
62           Adds function names to program output.
63
64 config CONFIG_LAST
65         bool "last"
66         default n
67         help
68           'last' displays a list of the last users that logged into the system.
69
70 config CONFIG_HDPARM
71         bool "hdparm"
72         default n
73         help
74           Get/Set hard drive parameters.  Primarily intended for ATA
75           drives.  Adds about 13k (or around 30k if you enable the 
76           CONFIG_FEATURE_HDPARM_GET_IDENTITY option)....
77
78 config CONFIG_FEATURE_HDPARM_GET_IDENTITY
79         bool "  Support obtaining detailed information directly from drives" 
80         default y
81         depends on CONFIG_HDPARM
82         help
83           Enables the -I and -Istdin options to obtain detailed information
84           directly from drives about their capabilities and supported ATA
85           feature set.  Enabling this option will add about 16k...
86
87 config CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF
88         bool "  Register an IDE interface (DANGEROUS)" 
89         default n
90         depends on CONFIG_HDPARM
91         help
92           Enables the 'hdparm -R' option to register an IDE interface.
93           This is dangerous stuff, so you should probably say N.
94
95 config CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
96         bool "  Un-register an IDE interface (DANGEROUS)" 
97         default n
98         depends on CONFIG_HDPARM
99         help
100           Enables the 'hdparm -U' option to un-register an IDE interface.
101           This is dangerous stuff, so you should probably say N.
102
103 config CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET
104         bool "  perform device reset (DANGEROUS)" 
105         default n
106         depends on CONFIG_HDPARM
107         help
108           Enables the 'hdparm -w' option to perform a device reset.
109           This is dangerous stuff, so you should probably say N.
110
111 config CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
112         bool "  tristate device for hotswap (DANGEROUS)" 
113         default n
114         depends on CONFIG_HDPARM
115         help
116           Enables the 'hdparm -x' option to tristate device for hotswap,
117           and the '-b' option to get/set bus state.  This is dangerous
118           stuff, so you should probably say N.
119
120 config CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA
121         bool "  get/set using_dma flag (DANGEROUS)"
122         default n
123         depends on CONFIG_HDPARM
124         help
125           Enables the 'hdparm -d' option to get/set using_dma flag.
126           This is dangerous stuff, so you should probably say N.
127
128 config CONFIG_MAKEDEVS
129         bool "makedevs"
130         default n
131         help
132           'makedevs' is a utility used and created by the Linux Router Project.
133           It creates a large number of device special files (/dev devices)
134           rather quickly, and can be considerably faster then running mknod a
135           zillion times.
136
137 config CONFIG_MT
138         bool "mt"
139         default n
140         help
141           mt is used to control tape devices.  You can use the mt utility
142           to advance or rewind a tape past a specified number of archive
143           files on the tape.
144
145 config CONFIG_STRINGS
146         bool "strings"
147         default n
148         help
149           strings prints the printable character sequences for each file
150           specified.
151
152 config CONFIG_TIME
153         bool "time"
154         default n
155         help
156           The time command runs the specified program with the given arguments.
157           When the command finishes, time writes a message to standard output
158           giving timing statistics about this program run.
159
160 config CONFIG_WATCHDOG
161         bool "watchdog"
162         default n
163         help
164           The watchdog utility is used with hardware or software watchdog
165           device drivers.  It opens the specified watchdog device special file
166           and periodically writes a magic character to the device.  If the
167           watchdog applet ever fails to write the magic character within a
168           certain amount of time, the watchdog device assumes the system has
169           hung, and will cause the hardware to reboot.
170
171 endmenu
172