aboutsummaryrefslogtreecommitdiff
path: root/util-linux/Config.src
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/Config.src')
-rw-r--r--util-linux/Config.src505
1 files changed, 0 insertions, 505 deletions
diff --git a/util-linux/Config.src b/util-linux/Config.src
index 9bef0d532..3c522f948 100644
--- a/util-linux/Config.src
+++ b/util-linux/Config.src
@@ -7,511 +7,6 @@ menu "Linux System Utilities"
7 7
8INSERT 8INSERT
9 9
10config ACPID
11 bool "acpid"
12 default y
13 select PLATFORM_LINUX
14 help
15 acpid listens to ACPI events coming either in textual form from
16 /proc/acpi/event (though it is marked deprecated it is still widely
17 used and _is_ a standard) or in binary form from specified evdevs
18 (just use /dev/input/event*).
19
20 It parses the event to retrieve ACTION and a possible PARAMETER.
21 It then spawns /etc/acpi/<ACTION>[/<PARAMETER>] either via run-parts
22 (if the resulting path is a directory) or directly as an executable.
23
24 N.B. acpid relies on run-parts so have the latter installed.
25
26config FEATURE_ACPID_COMPAT
27 bool "Accept and ignore redundant options"
28 default y
29 depends on ACPID
30 help
31 Accept and ignore compatibility options -g -m -s -S -v.
32
33config BLKID
34 bool "blkid"
35 default y
36 select PLATFORM_LINUX
37 select VOLUMEID
38 help
39 Lists labels and UUIDs of all filesystems.
40 WARNING:
41 With all submodules selected, it will add ~8k to busybox.
42
43config FEATURE_BLKID_TYPE
44 bool "Print filesystem type"
45 default n
46 depends on BLKID
47 help
48 Show TYPE="filesystem type"
49
50config DMESG
51 bool "dmesg"
52 default y
53 select PLATFORM_LINUX
54 help
55 dmesg is used to examine or control the kernel ring buffer. When the
56 Linux kernel prints messages to the system log, they are stored in
57 the kernel ring buffer. You can use dmesg to print the kernel's ring
58 buffer, clear the kernel ring buffer, change the size of the kernel
59 ring buffer, and change the priority level at which kernel messages
60 are also logged to the system console. Enable this option if you
61 wish to enable the 'dmesg' utility.
62
63config FEATURE_DMESG_PRETTY
64 bool "Pretty dmesg output"
65 default y
66 depends on DMESG
67 help
68 If you wish to scrub the syslog level from the output, say 'Y' here.
69 The syslog level is a string prefixed to every line with the form
70 "<#>".
71
72 With this option you will see:
73 # dmesg
74 Linux version 2.6.17.4 .....
75 BIOS-provided physical RAM map:
76 BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
77
78 Without this option you will see:
79 # dmesg
80 <5>Linux version 2.6.17.4 .....
81 <6>BIOS-provided physical RAM map:
82 <6> BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
83
84config FBSET
85 bool "fbset"
86 default y
87 select PLATFORM_LINUX
88 help
89 fbset is used to show or change the settings of a Linux frame buffer
90 device. The frame buffer device provides a simple and unique
91 interface to access a graphics display. Enable this option
92 if you wish to enable the 'fbset' utility.
93
94config FEATURE_FBSET_FANCY
95 bool "Turn on extra fbset options"
96 default y
97 depends on FBSET
98 help
99 This option enables extended fbset options, allowing one to set the
100 framebuffer size, color depth, etc. interface to access a graphics
101 display. Enable this option if you wish to enable extended fbset
102 options.
103
104config FEATURE_FBSET_READMODE
105 bool "Turn on fbset readmode support"
106 default y
107 depends on FBSET
108 help
109 This option allows fbset to read the video mode database stored by
110 default as /etc/fb.modes, which can be used to set frame buffer
111 device to pre-defined video modes.
112
113config FDFLUSH
114 bool "fdflush"
115 default y
116 select PLATFORM_LINUX
117 help
118 fdflush is only needed when changing media on slightly-broken
119 removable media drives. It is used to make Linux believe that a
120 hardware disk-change switch has been actuated, which causes Linux to
121 forget anything it has cached from the previous media. If you have
122 such a slightly-broken drive, you will need to run fdflush every time
123 you change a disk. Most people have working hardware and can safely
124 leave this disabled.
125
126config FDFORMAT
127 bool "fdformat"
128 default y
129 select PLATFORM_LINUX
130 help
131 fdformat is used to low-level format a floppy disk.
132
133config FDISK
134 bool "fdisk"
135 default y
136 select PLATFORM_LINUX
137 help
138 The fdisk utility is used to divide hard disks into one or more
139 logical disks, which are generally called partitions. This utility
140 can be used to list and edit the set of partitions or BSD style
141 'disk slices' that are defined on a hard drive.
142
143config FDISK_SUPPORT_LARGE_DISKS
144 bool "Support over 4GB disks"
145 default y
146 depends on FDISK
147 depends on !LFS # with LFS no special code is needed
148 help
149 Enable this option to support large disks > 4GB.
150
151config FEATURE_FDISK_WRITABLE
152 bool "Write support"
153 default y
154 depends on FDISK
155 help
156 Enabling this option allows you to create or change a partition table
157 and write those changes out to disk. If you leave this option
158 disabled, you will only be able to view the partition table.
159
160config FEATURE_AIX_LABEL
161 bool "Support AIX disklabels"
162 default n
163 depends on FDISK && FEATURE_FDISK_WRITABLE
164 help
165 Enabling this option allows you to create or change AIX disklabels.
166 Most people can safely leave this option disabled.
167
168config FEATURE_SGI_LABEL
169 bool "Support SGI disklabels"
170 default n
171 depends on FDISK && FEATURE_FDISK_WRITABLE
172 help
173 Enabling this option allows you to create or change SGI disklabels.
174 Most people can safely leave this option disabled.
175
176config FEATURE_SUN_LABEL
177 bool "Support SUN disklabels"
178 default n
179 depends on FDISK && FEATURE_FDISK_WRITABLE
180 help
181 Enabling this option allows you to create or change SUN disklabels.
182 Most people can safely leave this option disabled.
183
184config FEATURE_OSF_LABEL
185 bool "Support BSD disklabels"
186 default n
187 depends on FDISK && FEATURE_FDISK_WRITABLE
188 help
189 Enabling this option allows you to create or change BSD disklabels
190 and define and edit BSD disk slices.
191
192config FEATURE_GPT_LABEL
193 bool "Support GPT disklabels"
194 default n
195 depends on FDISK && FEATURE_FDISK_WRITABLE
196 help
197 Enabling this option allows you to view GUID Partition Table
198 disklabels.
199
200config FEATURE_FDISK_ADVANCED
201 bool "Support expert mode"
202 default y
203 depends on FDISK && FEATURE_FDISK_WRITABLE
204 help
205 Enabling this option allows you to do terribly unsafe things like
206 define arbitrary drive geometry, move the beginning of data in a
207 partition, and similarly evil things. Unless you have a very good
208 reason you would be wise to leave this disabled.
209
210config FINDFS
211 bool "findfs"
212 default y
213 select PLATFORM_LINUX
214 select VOLUMEID
215 help
216 Prints the name of a filesystem with given label or UUID.
217 WARNING:
218 With all submodules selected, it will add ~8k to busybox.
219
220config FLOCK
221 bool "flock"
222 default y
223 help
224 Manage locks from shell scripts
225
226config FREERAMDISK
227 bool "freeramdisk"
228 default y
229 select PLATFORM_LINUX
230 help
231 Linux allows you to create ramdisks. This utility allows you to
232 delete them and completely free all memory that was used for the
233 ramdisk. For example, if you boot Linux into a ramdisk and later
234 pivot_root, you may want to free the memory that is allocated to the
235 ramdisk. If you have no use for freeing memory from a ramdisk, leave
236 this disabled.
237
238config FSCK_MINIX
239 bool "fsck_minix"
240 default y
241 help
242 The minix filesystem is a nice, small, compact, read-write filesystem
243 with little overhead. It is not a journaling filesystem however and
244 can experience corruption if it is not properly unmounted or if the
245 power goes off in the middle of a write. This utility allows you to
246 check for and attempt to repair any corruption that occurs to a minix
247 filesystem.
248
249config MKFS_MINIX
250 bool "mkfs_minix"
251 default y
252 select PLATFORM_LINUX
253 help
254 The minix filesystem is a nice, small, compact, read-write filesystem
255 with little overhead. If you wish to be able to create minix
256 filesystems this utility will do the job for you.
257
258config FEATURE_MINIX2
259 bool "Support Minix fs v2 (fsck_minix/mkfs_minix)"
260 default y
261 depends on FSCK_MINIX || MKFS_MINIX
262 help
263 If you wish to be able to create version 2 minix filesystems, enable
264 this. If you enabled 'mkfs_minix' then you almost certainly want to
265 be using the version 2 filesystem support.
266
267config MKFS_REISER
268 bool "mkfs_reiser"
269 default n
270 select PLATFORM_LINUX
271 help
272 Utility to create ReiserFS filesystems.
273 Note: this applet needs a lot of testing and polishing.
274
275config GETOPT
276 bool "getopt"
277 default y
278 help
279 The getopt utility is used to break up (parse) options in command
280 lines to make it easy to write complex shell scripts that also check
281 for legal (and illegal) options. If you want to write horribly
282 complex shell scripts, or use some horribly complex shell script
283 written by others, this utility may be for you. Most people will
284 wisely leave this disabled.
285
286config FEATURE_GETOPT_LONG
287 bool "Support option -l"
288 default y if LONG_OPTS
289 depends on GETOPT
290 help
291 Enable support for long options (option -l).
292
293config HEXDUMP
294 bool "hexdump"
295 default y
296 help
297 The hexdump utility is used to display binary data in a readable
298 way that is comparable to the output from most hex editors.
299
300config FEATURE_HEXDUMP_REVERSE
301 bool "Support -R, reverse of 'hexdump -Cv'"
302 default y
303 depends on HEXDUMP
304 help
305 The hexdump utility is used to display binary data in an ascii
306 readable way. This option creates binary data from an ascii input.
307 NB: this option is non-standard. It's unwise to use it in scripts
308 aimed to be portable.
309
310config HD
311 bool "hd"
312 default y
313 depends on HEXDUMP
314 help
315 hd is an alias to hexdump -C.
316
317config HWCLOCK
318 bool "hwclock"
319 default y
320 select PLATFORM_LINUX
321 help
322 The hwclock utility is used to read and set the hardware clock
323 on a system. This is primarily used to set the current time on
324 shutdown in the hardware clock, so the hardware will keep the
325 correct time when Linux is _not_ running.
326
327config FEATURE_HWCLOCK_LONG_OPTIONS
328 bool "Support long options (--hctosys,...)"
329 default y
330 depends on HWCLOCK && LONG_OPTS
331 help
332 By default, the hwclock utility only uses short options. If you
333 are overly fond of its long options, such as --hctosys, --utc, etc)
334 then enable this option.
335
336config FEATURE_HWCLOCK_ADJTIME_FHS
337 bool "Use FHS /var/lib/hwclock/adjtime"
338 default n # util-linux-ng in Fedora 13 still uses /etc/adjtime
339 depends on HWCLOCK
340 help
341 Starting with FHS 2.3, the adjtime state file is supposed to exist
342 at /var/lib/hwclock/adjtime instead of /etc/adjtime. If you wish
343 to use the FHS behavior, answer Y here, otherwise answer N for the
344 classic /etc/adjtime path.
345
346 pathname.com/fhs/pub/fhs-2.3.html#VARLIBHWCLOCKSTATEDIRECTORYFORHWCLO
347
348config IPCRM
349 bool "ipcrm"
350 default y
351 help
352 The ipcrm utility allows the removal of System V interprocess
353 communication (IPC) objects and the associated data structures
354 from the system.
355
356config IPCS
357 bool "ipcs"
358 default y
359 select PLATFORM_LINUX
360 help
361 The ipcs utility is used to provide information on the currently
362 allocated System V interprocess (IPC) objects in the system.
363
364config LOSETUP
365 bool "losetup"
366 default y
367 select PLATFORM_LINUX
368 help
369 losetup is used to associate or detach a loop device with a regular
370 file or block device, and to query the status of a loop device. This
371 version does not currently support enabling data encryption.
372
373config LSPCI
374 bool "lspci"
375 default y
376 #select PLATFORM_LINUX
377 help
378 lspci is a utility for displaying information about PCI buses in the
379 system and devices connected to them.
380
381 This version uses sysfs (/sys/bus/pci/devices) only.
382
383config LSUSB
384 bool "lsusb"
385 default y
386 #select PLATFORM_LINUX
387 help
388 lsusb is a utility for displaying information about USB buses in the
389 system and devices connected to them.
390
391 This version uses sysfs (/sys/bus/usb/devices) only.
392
393config MKSWAP
394 bool "mkswap"
395 default y
396 help
397 The mkswap utility is used to configure a file or disk partition as
398 Linux swap space. This allows Linux to use the entire file or
399 partition as if it were additional RAM, which can greatly increase
400 the capability of low-memory machines. This additional memory is
401 much slower than real RAM, but can be very helpful at preventing your
402 applications being killed by the Linux out of memory (OOM) killer.
403 Once you have created swap space using 'mkswap' you need to enable
404 the swap space using the 'swapon' utility.
405
406config FEATURE_MKSWAP_UUID
407 bool "UUID support"
408 default y
409 depends on MKSWAP
410 help
411 Generate swap spaces with universally unique identifiers.
412
413config MORE
414 bool "more"
415 default y
416 help
417 more is a simple utility which allows you to read text one screen
418 sized page at a time. If you want to read text that is larger than
419 the screen, and you are using anything faster than a 300 baud modem,
420 you will probably find this utility very helpful. If you don't have
421 any need to reading text files, you can leave this disabled.
422
423config PIVOT_ROOT
424 bool "pivot_root"
425 default y
426 select PLATFORM_LINUX
427 help
428 The pivot_root utility swaps the mount points for the root filesystem
429 with some other mounted filesystem. This allows you to do all sorts
430 of wild and crazy things with your Linux system and is far more
431 powerful than 'chroot'.
432
433 Note: This is for initrd in linux 2.4. Under initramfs (introduced
434 in linux 2.6) use switch_root instead.
435
436config RDATE
437 bool "rdate"
438 default y
439 help
440 The rdate utility allows you to synchronize the date and time of your
441 system clock with the date and time of a remote networked system using
442 the RFC868 protocol, which is built into the inetd daemon on most
443 systems.
444
445config RDEV
446 bool "rdev"
447 default y
448 help
449 Print the device node associated with the filesystem mounted at '/'.
450
451config READPROFILE
452 bool "readprofile"
453 default y
454 #select PLATFORM_LINUX
455 help
456 This allows you to parse /proc/profile for basic profiling.
457
458config RTCWAKE
459 bool "rtcwake"
460 default y
461 select PLATFORM_LINUX
462 help
463 Enter a system sleep state until specified wakeup time.
464
465config SCRIPT
466 bool "script"
467 default y
468 help
469 The script makes typescript of terminal session.
470
471config SCRIPTREPLAY
472 bool "scriptreplay"
473 default y
474 help
475 This program replays a typescript, using timing information
476 given by script -t.
477
478config SWITCH_ROOT
479 bool "switch_root"
480 default y
481 select PLATFORM_LINUX
482 help
483 The switch_root utility is used from initramfs to select a new
484 root device. Under initramfs, you have to use this instead of
485 pivot_root. (Stop reading here if you don't care why.)
486
487 Booting with initramfs extracts a gzipped cpio archive into rootfs
488 (which is a variant of ramfs/tmpfs). Because rootfs can't be moved
489 or unmounted*, pivot_root will not work from initramfs. Instead,
490 switch_root deletes everything out of rootfs (including itself),
491 does a mount --move that overmounts rootfs with the new root, and
492 then execs the specified init program.
493
494 * Because the Linux kernel uses rootfs internally as the starting
495 and ending point for searching through the kernel's doubly linked
496 list of active mount points. That's why.
497
498config UMOUNT
499 bool "umount"
500 default y
501 select PLATFORM_LINUX
502 help
503 When you want to remove a mounted filesystem from its current mount
504 point, for example when you are shutting down the system, the
505 'umount' utility is the tool to use. If you enabled the 'mount'
506 utility, you almost certainly also want to enable 'umount'.
507
508config FEATURE_UMOUNT_ALL
509 bool "Support option -a"
510 default y
511 depends on UMOUNT
512 help
513 Support -a option to unmount all currently mounted filesystems.
514
515comment "Common options for mount/umount" 10comment "Common options for mount/umount"
516 depends on MOUNT || UMOUNT 11 depends on MOUNT || UMOUNT
517 12