blob: b75a09b6ef2dbc7afc0923b72f7cfaf12eb3b20e [file] [log] [blame]
Eric Andersenc9f20d92002-12-05 08:41:41 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Linux System Utilities"
7
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00008config DMESG
Eric Andersenc9f20d92002-12-05 08:41:41 +00009 bool "dmesg"
10 default n
11 help
Eric Andersena0ac4522003-02-27 03:14:04 +000012 dmesg is used to examine or control the kernel ring buffer. When the
13 Linux kernel prints messages to the system log, they are stored in
14 the kernel ring buffer. You can use dmesg to print the kernel's ring
15 buffer, clear the kernel ring buffer, change the size of the kernel
16 ring buffer, and change the priority level at which kernel messages
17 are also logged to the system console. Enable this option if you
18 wish to enable the 'dmesg' utility.
Eric Andersenc9f20d92002-12-05 08:41:41 +000019
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000020config FEATURE_DMESG_PRETTY
Rob Landley446129a2006-07-27 16:40:55 +000021 bool "pretty dmesg output"
22 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000023 depends on DMESG
Rob Landley446129a2006-07-27 16:40:55 +000024 help
25 If you wish to scrub the syslog level from the output, say 'Y' here.
26 The syslog level is a string prefixed to every line with the form "<#>".
27
28 With this option you will see:
29 # dmesg
30 Linux version 2.6.17.4 .....
31 BIOS-provided physical RAM map:
32 BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
33
34 Without this option you will see:
35 # dmesg
36 <5>Linux version 2.6.17.4 .....
37 <6>BIOS-provided physical RAM map:
38 <6> BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
39
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000040config FBSET
Eric Andersenc9f20d92002-12-05 08:41:41 +000041 bool "fbset"
42 default n
43 help
Eric Andersena0ac4522003-02-27 03:14:04 +000044 fbset is used to show or change the settings of a Linux frame buffer
45 device. The frame buffer device provides a simple and unique
Eric Andersen88c916b2003-10-22 09:58:56 +000046 interface to access a graphics display. Enable this option
47 if you wish to enable the 'fbset' utility.
Eric Andersena0ac4522003-02-27 03:14:04 +000048
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000049config FEATURE_FBSET_FANCY
Rob Landley2ec922e2006-04-13 23:22:16 +000050 bool "Turn on extra fbset options"
Eric Andersenc9f20d92002-12-05 08:41:41 +000051 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000052 depends on FBSET
Eric Andersenc9f20d92002-12-05 08:41:41 +000053 help
Eric Andersena0ac4522003-02-27 03:14:04 +000054 This option enables extended fbset options, allowing one to set the
Eric Andersen88c916b2003-10-22 09:58:56 +000055 framebuffer size, color depth, etc. interface to access a graphics
Eric Andersena0ac4522003-02-27 03:14:04 +000056 display. Enable this option if you wish to enable extended fbset
57 options.
Eric Andersenc9f20d92002-12-05 08:41:41 +000058
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000059config FEATURE_FBSET_READMODE
Rob Landley2ec922e2006-04-13 23:22:16 +000060 bool "Turn on fbset readmode support"
Eric Andersenc9f20d92002-12-05 08:41:41 +000061 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000062 depends on FBSET
Eric Andersenc9f20d92002-12-05 08:41:41 +000063 help
Eric Andersena0ac4522003-02-27 03:14:04 +000064 This option allows fbset to read the video mode database stored by
65 default as /etc/fb.modes, which can be used to set frame buffer
66 device to pre-defined video modes.
Eric Andersenc9f20d92002-12-05 08:41:41 +000067
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000068config FDFLUSH
Eric Andersenc9f20d92002-12-05 08:41:41 +000069 bool "fdflush"
70 default n
71 help
Eric Andersen88c916b2003-10-22 09:58:56 +000072 fdflush is only needed when changing media on slightly-broken
Eric Andersena0ac4522003-02-27 03:14:04 +000073 removable media drives. It is used to make Linux believe that a
74 hardware disk-change switch has been actuated, which causes Linux to
75 forget anything it has cached from the previous media. If you have
76 such a slightly-broken drive, you will need to run fdflush every time
77 you change a disk. Most people have working hardware and can safely
Eric Andersen88c916b2003-10-22 09:58:56 +000078 leave this disabled.
Eric Andersenc9f20d92002-12-05 08:41:41 +000079
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000080config FDFORMAT
Eric Andersen01c3d402003-07-05 07:51:31 +000081 bool "fdformat"
82 default n
83 help
Eric Andersen88c916b2003-10-22 09:58:56 +000084 fdformat is used to low-level format a floppy disk.
Eric Andersen01c3d402003-07-05 07:51:31 +000085
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000086config FDISK
Eric Andersenc9f20d92002-12-05 08:41:41 +000087 bool "fdisk"
88 default n
89 help
Eric Andersena0ac4522003-02-27 03:14:04 +000090 The fdisk utility is used to divide hard disks into one or more
91 logical disks, which are generally called partitions. This utility
Eric Andersenc7bda1c2004-03-15 08:29:22 +000092 can be used to list and edit the set of partitions or BSD style
Eric Andersena0ac4522003-02-27 03:14:04 +000093 'disk slices' that are defined on a hard drive.
Eric Andersenc9f20d92002-12-05 08:41:41 +000094
Eric Andersen84bdea82004-05-19 10:49:17 +000095config FDISK_SUPPORT_LARGE_DISKS
Rob Landley2ec922e2006-04-13 23:22:16 +000096 bool "support over 4GB disks"
Eric Andersen84bdea82004-05-19 10:49:17 +000097 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000098 depends on FDISK
Eric Andersen84bdea82004-05-19 10:49:17 +000099 help
100 Enable this option to support large disks > 4GB.
101
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000102config FEATURE_FDISK_WRITABLE
Rob Landley2ec922e2006-04-13 23:22:16 +0000103 bool "Write support"
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000104 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000105 depends on FDISK
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000106 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000107 Enabling this option allows you to create or change a partition table
108 and write those changes out to disk. If you leave this option
109 disabled, you will only be able to view the partition table.
Glenn L McGrath4dcc2dd2003-01-04 11:56:06 +0000110
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000111config FEATURE_AIX_LABEL
Rob Landley2ec922e2006-04-13 23:22:16 +0000112 bool "Support AIX disklabels"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000113 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000114 depends on FDISK && FEATURE_FDISK_WRITABLE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000115 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000116 Enabling this option allows you to create or change AIX disklabels.
117 Most people can safely leave this option disabled.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000118
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000119config FEATURE_SGI_LABEL
Rob Landley2ec922e2006-04-13 23:22:16 +0000120 bool "Support SGI disklabels"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000121 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000122 depends on FDISK && FEATURE_FDISK_WRITABLE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000123 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000124 Enabling this option allows you to create or change SGI disklabels.
125 Most people can safely leave this option disabled.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000126
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000127config FEATURE_SUN_LABEL
Rob Landley2ec922e2006-04-13 23:22:16 +0000128 bool "Support SUN disklabels"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000129 default n
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000130 depends on FDISK && FEATURE_FDISK_WRITABLE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000131 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000132 Enabling this option allows you to create or change SUN disklabels.
133 Most people can safely leave this option disabled.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000134
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000135config FEATURE_OSF_LABEL
Rob Landley2ec922e2006-04-13 23:22:16 +0000136 bool "Support BSD disklabels"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000137 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000138 depends on FDISK && FEATURE_FDISK_WRITABLE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000139 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000140 Enabling this option allows you to create or change BSD disklabels
141 and define and edit BSD disk slices.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000142
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000143config FEATURE_FDISK_ADVANCED
Rob Landley2ec922e2006-04-13 23:22:16 +0000144 bool "Support expert mode"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000145 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000146 depends on FDISK && FEATURE_FDISK_WRITABLE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000147 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000148 Enabling this option allows you to do terribly unsafe things like
149 define arbitrary drive geometry, move the beginning of data in a
150 partition, and similarly evil things. Unless you have a very good
151 reason you would be wise to leave this disabled.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000152
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000153config FREERAMDISK
Eric Andersenc9f20d92002-12-05 08:41:41 +0000154 bool "freeramdisk"
155 default n
156 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000157 Linux allows you to create ramdisks. This utility allows you to
158 delete them and completely free all memory that was used for the
159 ramdisk. For example, if you boot Linux into a ramdisk and later
160 pivot_root, you may want to free the memory that is allocated to the
161 ramdisk. If you have no use for freeing memory from a ramdisk, leave
162 this disabled.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000163
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000164config FSCK_MINIX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000165 bool "fsck_minix"
166 default n
167 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000168 The minix filesystem is a nice, small, compact, read-write filesystem
169 with little overhead. It is not a journaling filesystem however and
Eric Andersen88c916b2003-10-22 09:58:56 +0000170 can experience corruption if it is not properly unmounted or if the
Eric Andersena0ac4522003-02-27 03:14:04 +0000171 power goes off in the middle of a write. This utility allows you to
172 check for and attempt to repair any corruption that occurs to a minix
173 filesystem.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000174
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000175config MKFS_MINIX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000176 bool "mkfs_minix"
177 default n
178 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000179 The minix filesystem is a nice, small, compact, read-write filesystem
180 with little overhead. If you wish to be able to create minix filesystems
181 this utility will do the job for you.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000182
183comment "Minix filesystem support"
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000184 depends on FSCK_MINIX || MKFS_MINIX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000185
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000186config FEATURE_MINIX2
Rob Landley2ec922e2006-04-13 23:22:16 +0000187 bool "Support Minix fs v2 (fsck_minix/mkfs_minix)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000188 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000189 depends on FSCK_MINIX || MKFS_MINIX
Eric Andersenc9f20d92002-12-05 08:41:41 +0000190 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000191 If you wish to be able to create version 2 minix filesystems, enable this.
192 If you enabled 'mkfs_minix' then you almost certainly want to be using the
193 version 2 filesystem support.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000194
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000195config GETOPT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000196 bool "getopt"
197 default n
198 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000199 The getopt utility is used to break up (parse) options in command
200 lines to make it easy to write complex shell scripts that also check
201 for legal (and illegal) options. If you want to write horribly
202 complex shell scripts, or use some horribly complex shell script
203 written by others, this utility may be for you. Most people will
204 wisely leave this disabled.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000205
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000206config HEXDUMP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000207 bool "hexdump"
208 default n
209 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000210 The hexdump utility is used to display binary data in a readable
211 way that is comparable to the output from most hex editors.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000212
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000213config HWCLOCK
Eric Andersenc9f20d92002-12-05 08:41:41 +0000214 bool "hwclock"
215 default n
216 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000217 The hwclock utility is used to read and set the hardware clock
Eric Andersen88c916b2003-10-22 09:58:56 +0000218 on a system. This is primarily used to set the current time on
219 shutdown in the hardware clock, so the hardware will keep the
220 correct time when Linux is _not_ running.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000221
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000222config FEATURE_HWCLOCK_LONG_OPTIONS
Rob Landley2ec922e2006-04-13 23:22:16 +0000223 bool "Support long options (--hctosys,...)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000224 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000225 depends on HWCLOCK && GETOPT_LONG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000226 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000227 By default, the hwclock utility only uses short options. If you
Eric Andersen88c916b2003-10-22 09:58:56 +0000228 are overly fond of its long options, such as --hctosys, --utc, etc)
Eric Andersena0ac4522003-02-27 03:14:04 +0000229 then enable this option.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000230
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000231config FEATURE_HWCLOCK_ADJTIME_FHS
Rob Landley2ec922e2006-04-13 23:22:16 +0000232 bool "Use FHS /var/lib/hwclock/adjtime"
Mike Frysinger747fc5d2005-09-28 03:21:21 +0000233 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000234 depends on HWCLOCK
Mike Frysinger747fc5d2005-09-28 03:21:21 +0000235 help
236 Starting with FHS 2.3, the adjtime state file is supposed to exist
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000237 at /var/lib/hwclock/adjtime instead of /etc/adjtime. If you wish
Mike Frysinger747fc5d2005-09-28 03:21:21 +0000238 to use the FHS behavior, answer Y here, otherwise answer N for the
239 classic /etc/adjtime path.
240
241 http://www.pathname.com/fhs/pub/fhs-2.3.html#VARLIBHWCLOCKSTATEDIRECTORYFORHWCLO
242
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000243config IPCRM
Rob Landley6eb1e412005-06-20 04:30:36 +0000244 bool "ipcrm"
245 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000246 select FEATURE_SUID
Rob Landley6eb1e412005-06-20 04:30:36 +0000247 help
248 The ipcrm utility allows the removal of System V interprocess
249 communication (IPC) objects and the associated data structures
250 from the system.
251
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000252config IPCS
Rob Landley6eb1e412005-06-20 04:30:36 +0000253 bool "ipcs"
254 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000255 select FEATURE_SUID
Rob Landley6eb1e412005-06-20 04:30:36 +0000256 help
257 The ipcs utility is used to provide information on the currently
258 allocated System V interprocess (IPC) objects in the system.
259
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000260config LOSETUP
Mike Frysinger75aa1922005-09-24 23:12:38 +0000261 bool "losetup"
262 default n
263 help
264 losetup is used to associate or detach a loop device with a regular
265 file or block device, and to query the status of a loop device. This
266 version does not currently support enabling data encryption.
267
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000268config MDEV
Rob Landley70f7ef72005-12-13 08:21:33 +0000269 bool "mdev"
270 default n
271 help
272 mdev is a mini-udev implementation: call it with -s to populate
Mike Frysinger55092282006-02-02 23:14:57 +0000273 /dev from /sys, then "echo /sbin/mdev > /proc/sys/kernel/hotplug" to
Rob Landley70f7ef72005-12-13 08:21:33 +0000274 have it handle hotplug events afterwards. Device names are taken
275 from sysfs.
276
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000277config FEATURE_MDEV_CONF
Rob Landley2ec922e2006-04-13 23:22:16 +0000278 bool "Support /etc/mdev.conf"
Rob Landley70f7ef72005-12-13 08:21:33 +0000279 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000280 depends on MDEV
Rob Landley70f7ef72005-12-13 08:21:33 +0000281 help
282 The mdev config file contains lines that look like:
283
284 hd[a-z][0-9]* 0:3 660
285
286 That's device name (with regex match), uid:gid, and permissions.
287
Rob Landley70f7ef72005-12-13 08:21:33 +0000288 Config file parsing stops on the first matching line. If no config
289 entry is matched, devices are created with default 0:0 660. (Make
290 the last line match .* to override this.)
291
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000292config FEATURE_MDEV_EXEC
Rob Landleyef10d522006-06-26 14:11:33 +0000293 bool "Support command execution at device addition/removal"
294 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000295 depends on FEATURE_MDEV_CONF
Rob Landleyef10d522006-06-26 14:11:33 +0000296 help
297 This adds support for an optional field to /etc/mdev.conf, consisting
298 of a special character and a command line to run after creating the
299 corresponding device(s) and before removing, ala:
300
301 hdc root:cdrom 660 *ln -s $MDEV cdrom
302
303 The $MDEV environment variable is set to the name of the device.
304
305 The special characters and their meanings are:
306 @ Run after creating the device.
307 $ Run before removing the device.
308 * Run both after creating and before removing the device.
309
310 Commands are executed via system() so you need /bin/sh, meaning you
311 probably want to select a default shell in the Shells menu.
312
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000313config MKSWAP
Eric Andersenc9f20d92002-12-05 08:41:41 +0000314 bool "mkswap"
315 default n
316 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000317 The mkswap utility is used to configure a file or disk partition as
318 Linux swap space. This allows Linux to use the entire file or
319 partition as if it were additional RAM, which can greatly increase
320 the capability of low-memory machines. This additional memory is
321 much slower than real RAM, but can be very helpful at preventing your
Eric Andersen88c916b2003-10-22 09:58:56 +0000322 applications being killed by the Linux out of memory (OOM) killer.
323 Once you have created swap space using 'mkswap' you need to enable
324 the swap space using the 'swapon' utility.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000325
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000326config FEATURE_MKSWAP_V0
Rob Landley2ec922e2006-04-13 23:22:16 +0000327 bool "version 0 support"
Bernhard Reutner-Fischer56dd0bf2006-03-29 17:32:24 +0000328 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000329 depends on MKSWAP
330# depends on MKSWAP && DEPRECATED
Bernhard Reutner-Fischer56dd0bf2006-03-29 17:32:24 +0000331 help
332 Enable support for the old v0 style.
333 If your kernel is older than 2.1.117, then v0 support is the
334 only option.
335
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000336config MORE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000337 bool "more"
338 default n
339 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000340 more is a simple utility which allows you to read text one screen
Eric Andersena0ac4522003-02-27 03:14:04 +0000341 sized page at a time. If you want to read text that is larger than
342 the screen, and you are using anything faster than a 300 baud modem,
343 you will probably find this utility very helpful. If you don't have
344 any need to reading text files, you can leave this disabled.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000345
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000346config FEATURE_USE_TERMIOS
Rob Landley2ec922e2006-04-13 23:22:16 +0000347 bool "Use termios to manipulate the screen"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000348 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000349 depends on MORE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000350 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000351 This option allows utilities such as 'more' and 'top' to determine
352 the size of the screen. If you leave this disabled, your utilities
Eric Andersen88c916b2003-10-22 09:58:56 +0000353 that display things on the screen will be especially primitive and
Eric Andersena0ac4522003-02-27 03:14:04 +0000354 will be unable to determine the current screen size, and will be
355 unable to move the cursor.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000356
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000357config MOUNT
Mike Frysinger55092282006-02-02 23:14:57 +0000358 bool "mount"
359 default n
360 help
361 All files and filesystems in Unix are arranged into one big directory
362 tree. The 'mount' utility is used to graft a filesystem onto a
363 particular part of the tree. A filesystem can either live on a block
364 device, or it can be accessible over the network, as is the case with
365 NFS filesystems. Most people using BusyBox will also want to enable
366 the 'mount' utility.
367
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000368config FEATURE_MOUNT_NFS
Rob Landley2ec922e2006-04-13 23:22:16 +0000369 bool "Support mounting NFS file systems"
Mike Frysinger55092282006-02-02 23:14:57 +0000370 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000371 depends on MOUNT
Bernhard Reutner-Fischer732268f2006-12-01 16:56:12 +0000372 depends on FEATURE_HAVE_RPC
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000373 select FEATURE_SYSLOG
Mike Frysinger55092282006-02-02 23:14:57 +0000374 help
Rob Landleye3781b72006-08-08 01:39:49 +0000375 Enable mounting of NFS file systems.
376
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000377config FEATURE_MOUNT_CIFS
Rob Landley89d9d4d2006-09-01 08:10:44 +0000378 bool "Support mounting CIFS/SMB file systems"
379 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000380 depends on MOUNT
Rob Landley89d9d4d2006-09-01 08:10:44 +0000381 help
382 Enable support for samba mounts.
Denis Vlasenko39e93cc2006-09-10 18:38:17 +0000383
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000384config FEATURE_MOUNT_FLAGS
385 depends on MOUNT
Denis Vlasenko39e93cc2006-09-10 18:38:17 +0000386 bool "Support lots of -o flags in mount"
Rob Landleye3781b72006-08-08 01:39:49 +0000387 default y
388 help
389 Without this, mount only supports ro/rw/remount. With this, it
390 supports nosuid, suid, dev, nodev, exec, noexec, sync, async, atime,
391 noatime, diratime, nodiratime, loud, bind, move, shared, slave,
392 private, unbindable, rshared, rslave, rprivate, and runbindable.
393
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000394config FEATURE_MOUNT_FSTAB
395 depends on MOUNT
Rob Landleye3781b72006-08-08 01:39:49 +0000396 bool "Support /etc/fstab and -a"
397 default y
398 help
399 Support mount all and looking for files in /etc/fstab.
Mike Frysinger55092282006-02-02 23:14:57 +0000400
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000401config PIVOT_ROOT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000402 bool "pivot_root"
403 default n
404 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000405 The pivot_root utility swaps the mount points for the root filesystem
406 with some other mounted filesystem. This allows you to do all sorts
407 of wild and crazy things with your Linux system and is far more
408 powerful than 'chroot'.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000409
Rob Landley0f34a822005-10-27 22:55:50 +0000410 Note: This is for initrd in linux 2.4. Under initramfs (introduced
411 in linux 2.6) use switch_root instead.
412
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000413config RDATE
Eric Andersenc9f20d92002-12-05 08:41:41 +0000414 bool "rdate"
415 default n
416 help
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000417 The rdate utility allows you to synchronize the date and time of your
Eric Andersena0ac4522003-02-27 03:14:04 +0000418 system clock with the date and time of a remote networked system using
419 the RFC868 protocol, which is built into the inetd daemon on most
420 systems.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000421
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000422config READPROFILE
Mike Frysinger75aa1922005-09-24 23:12:38 +0000423 bool "readprofile"
424 default n
425 help
426 This allows you to parse /proc/profile for basic profiling.
427
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000428config SETARCH
Mike Frysinger0a6b0bf2006-02-21 04:26:52 +0000429 bool "setarch"
430 default n
431 help
432 The linux32 utility is used to create a 32bit environment for the
433 specified program (usually a shell). It only makes sense to have
434 this util on a system that supports both 64bit and 32bit userland
435 (like amd64/x86, ppc64/ppc, sparc64/sparc, etc...).
436
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000437config SWAPONOFF
Eric Andersenc9f20d92002-12-05 08:41:41 +0000438 bool "swaponoff"
439 default n
440 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000441 This option enables both the 'swapon' and the 'swapoff' utilities.
442 Once you have created some swap space using 'mkswap', you also need
443 to enable your swap space with the 'swapon' utility. The 'swapoff'
444 utility is used, typically at system shutdown, to disable any swap
445 space. If you are not using any swap space, you can leave this
446 option disabled.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000447
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000448config SWITCH_ROOT
Mike Frysinger55092282006-02-02 23:14:57 +0000449 bool "switch_root"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000450 default n
451 help
Mike Frysinger55092282006-02-02 23:14:57 +0000452 The switch_root utility is used from initramfs to select a new
453 root device. Under initramfs, you have to use this instead of
454 pivot_root. (Stop reading here if you don't care why.)
Eric Andersenc9f20d92002-12-05 08:41:41 +0000455
Mike Frysinger55092282006-02-02 23:14:57 +0000456 Booting with initramfs extracts a gzipped cpio archive into rootfs
457 (which is a variant of ramfs/tmpfs). Because rootfs can't be moved
458 or unmounted*, pivot_root will not work from initramfs. Instead,
459 switch_root deletes everything out of rootfs (including itself),
460 does a mount --move that overmounts rootfs with the new root, and
461 then execs the specified init program.
462
463 * Because the Linux kernel uses rootfs internally as the starting
464 and ending point for searching through the kernel's doubly linked
465 list of active mount points. That's why.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000466
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000467config UMOUNT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000468 bool "umount"
469 default n
470 help
Eric Andersena0ac4522003-02-27 03:14:04 +0000471 When you want to remove a mounted filesystem from its current mount point,
472 for example when you are shutting down the system, the 'umount' utility is
473 the tool to use. If you enabled the 'mount' utility, you almost certainly
474 also want to enable 'umount'.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000475
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000476config FEATURE_UMOUNT_ALL
Rob Landley2ec922e2006-04-13 23:22:16 +0000477 bool "umount -a option"
Rob Landleycc6d8d32006-02-08 20:06:57 +0000478 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000479 depends on UMOUNT
Rob Landleycc6d8d32006-02-08 20:06:57 +0000480 help
481 Support -a option to unmount all currently mounted filesystems.
482
Eric Andersenc9f20d92002-12-05 08:41:41 +0000483comment "Common options for mount/umount"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000484 depends on MOUNT || UMOUNT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000485
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000486config FEATURE_MOUNT_LOOP
Rob Landley2ec922e2006-04-13 23:22:16 +0000487 bool "Support loopback mounts"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000488 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000489 depends on MOUNT || UMOUNT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000490 help
Rob Landley6a6798b2005-08-10 20:35:54 +0000491 Enabling this feature allows automatic mounting of files (containing
492 filesystem images) via the linux kernel's loopback devices. The mount
493 command will detect you are trying to mount a file instead of a block
494 device, and transparently associate the file with a loopback device.
495 The umount command will also free that loopback device.
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000496
Rob Landley6a6798b2005-08-10 20:35:54 +0000497 You can still use the 'losetup' utility (to manually associate files
Mike Frysinger71a6a4e2007-01-24 08:24:43 +0000498 with loop devices) if you need to do something advanced, such as
Rob Landley6a6798b2005-08-10 20:35:54 +0000499 specify an offset or cryptographic options to the loopback device.
500 (If you don't want umount to free the loop device, use "umount -D".)
Paul Fox3f6f3172005-07-19 20:55:37 +0000501
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000502config FEATURE_MTAB_SUPPORT
Rob Landley2ec922e2006-04-13 23:22:16 +0000503 bool "Support for the old /etc/mtab file"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000504 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000505 depends on MOUNT || UMOUNT
Eric Andersenc9f20d92002-12-05 08:41:41 +0000506 help
Rob Landley6a6798b2005-08-10 20:35:54 +0000507 Historically, Unix systems kept track of the currently mounted
508 partitions in the file "/etc/mtab". These days, the kernel exports
509 the list of currently mounted partitions in "/proc/mounts", rendering
510 the old mtab file obsolete. (In modern systems, /etc/mtab should be
511 a symlink to /proc/mounts.)
Eric Andersena0ac4522003-02-27 03:14:04 +0000512
Rob Landley6a6798b2005-08-10 20:35:54 +0000513 The only reason to have mount maintain an /etc/mtab file itself is if
514 your stripped-down embedded system does not have a /proc directory.
515 If you must use this, keep in mind it's inherently brittle (for
516 example a mount under chroot won't update it), can't handle modern
517 features like separate per-process filesystem namespaces, requires
518 that your /etc directory be writeable, tends to get easily confused
Rob Landley17507fa2006-05-08 02:22:24 +0000519 by --bind or --move mounts, won't update if you rename a directory
520 that contains a mount point, and so on. (In brief: avoid.)
521
522 About the only reason to use this is if you've removed /proc from
523 your kernel.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000524
Eric Andersenc9f20d92002-12-05 08:41:41 +0000525endmenu
526