make FDISK_SUPPORT_LARGE_DISKS redundant when LFS=y
[oweals/busybox.git] / util-linux / Config.src
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 menu "Linux System Utilities"
7
8 INSERT
9
10 config 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
26 config 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
33 config 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
43 config FEATURE_BLKID_TYPE
44         bool "Print filesystem type"
45         default n
46         depends on BLKID
47         help
48           Show TYPE="filesystem type"
49
50 config 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
63 config 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
84 config 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
94 config 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
104 config 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
113 config 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
126 config 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
133 config 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
143 config 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
151 config 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
160 config 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
168 config 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
176 config 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
184 config 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
192 config 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
200 config 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
210 config 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
220 config FLOCK
221         bool "flock"
222         default y
223         help
224           Manage locks from shell scripts
225
226 config 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
238 config 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
249 config MKFS_EXT2
250         bool "mkfs_ext2"
251         default y
252         select PLATFORM_LINUX
253         help
254           Utility to create EXT2 filesystems.
255
256 config MKFS_MINIX
257         bool "mkfs_minix"
258         default y
259         select PLATFORM_LINUX
260         help
261           The minix filesystem is a nice, small, compact, read-write filesystem
262           with little overhead. If you wish to be able to create minix
263           filesystems this utility will do the job for you.
264
265 config FEATURE_MINIX2
266         bool "Support Minix fs v2 (fsck_minix/mkfs_minix)"
267         default y
268         depends on FSCK_MINIX || MKFS_MINIX
269         help
270           If you wish to be able to create version 2 minix filesystems, enable
271           this. If you enabled 'mkfs_minix' then you almost certainly want to
272           be using the version 2 filesystem support.
273
274 config MKFS_REISER
275         bool "mkfs_reiser"
276         default n
277         select PLATFORM_LINUX
278         help
279           Utility to create ReiserFS filesystems.
280           Note: this applet needs a lot of testing and polishing.
281
282 config MKFS_VFAT
283         bool "mkfs_vfat"
284         default y
285         select PLATFORM_LINUX
286         help
287           Utility to create FAT32 filesystems.
288
289 config GETOPT
290         bool "getopt"
291         default y
292         help
293           The getopt utility is used to break up (parse) options in command
294           lines to make it easy to write complex shell scripts that also check
295           for legal (and illegal) options. If you want to write horribly
296           complex shell scripts, or use some horribly complex shell script
297           written by others, this utility may be for you. Most people will
298           wisely leave this disabled.
299
300 config FEATURE_GETOPT_LONG
301         bool "Support option -l"
302         default y if LONG_OPTS
303         depends on GETOPT
304         help
305           Enable support for long options (option -l).
306
307 config HEXDUMP
308         bool "hexdump"
309         default y
310         help
311           The hexdump utility is used to display binary data in a readable
312           way that is comparable to the output from most hex editors.
313
314 config FEATURE_HEXDUMP_REVERSE
315         bool "Support -R, reverse of 'hexdump -Cv'"
316         default y
317         depends on HEXDUMP
318         help
319           The hexdump utility is used to display binary data in an ascii
320           readable way. This option creates binary data from an ascii input.
321           NB: this option is non-standard. It's unwise to use it in scripts
322           aimed to be portable.
323
324 config HD
325         bool "hd"
326         default y
327         depends on HEXDUMP
328         help
329           hd is an alias to hexdump -C.
330
331 config HWCLOCK
332         bool "hwclock"
333         default y
334         select PLATFORM_LINUX
335         help
336           The hwclock utility is used to read and set the hardware clock
337           on a system. This is primarily used to set the current time on
338           shutdown in the hardware clock, so the hardware will keep the
339           correct time when Linux is _not_ running.
340
341 config FEATURE_HWCLOCK_LONG_OPTIONS
342         bool "Support long options (--hctosys,...)"
343         default y
344         depends on HWCLOCK && LONG_OPTS
345         help
346           By default, the hwclock utility only uses short options. If you
347           are overly fond of its long options, such as --hctosys, --utc, etc)
348           then enable this option.
349
350 config FEATURE_HWCLOCK_ADJTIME_FHS
351         bool "Use FHS /var/lib/hwclock/adjtime"
352         default n  # util-linux-ng in Fedora 13 still uses /etc/adjtime
353         depends on HWCLOCK
354         help
355           Starting with FHS 2.3, the adjtime state file is supposed to exist
356           at /var/lib/hwclock/adjtime instead of /etc/adjtime. If you wish
357           to use the FHS behavior, answer Y here, otherwise answer N for the
358           classic /etc/adjtime path.
359
360           pathname.com/fhs/pub/fhs-2.3.html#VARLIBHWCLOCKSTATEDIRECTORYFORHWCLO
361
362 config IPCRM
363         bool "ipcrm"
364         default y
365         help
366           The ipcrm utility allows the removal of System V interprocess
367           communication (IPC) objects and the associated data structures
368           from the system.
369
370 config IPCS
371         bool "ipcs"
372         default y
373         select PLATFORM_LINUX
374         help
375           The ipcs utility is used to provide information on the currently
376           allocated System V interprocess (IPC) objects in the system.
377
378 config LOSETUP
379         bool "losetup"
380         default y
381         select PLATFORM_LINUX
382         help
383           losetup is used to associate or detach a loop device with a regular
384           file or block device, and to query the status of a loop device. This
385           version does not currently support enabling data encryption.
386
387 config LSPCI
388         bool "lspci"
389         default y
390         #select PLATFORM_LINUX
391         help
392           lspci is a utility for displaying information about PCI buses in the
393           system and devices connected to them.
394
395           This version uses sysfs (/sys/bus/pci/devices) only.
396
397 config LSUSB
398         bool "lsusb"
399         default y
400         #select PLATFORM_LINUX
401         help
402           lsusb is a utility for displaying information about USB buses in the
403           system and devices connected to them.
404
405           This version uses sysfs (/sys/bus/usb/devices) only.
406
407 config MDEV
408         bool "mdev"
409         default y
410         select PLATFORM_LINUX
411         help
412           mdev is a mini-udev implementation for dynamically creating device
413           nodes in the /dev directory.
414
415           For more information, please see docs/mdev.txt
416
417 config FEATURE_MDEV_CONF
418         bool "Support /etc/mdev.conf"
419         default y
420         depends on MDEV
421         help
422           Add support for the mdev config file to control ownership and
423           permissions of the device nodes.
424
425           For more information, please see docs/mdev.txt
426
427 config FEATURE_MDEV_RENAME
428         bool "Support subdirs/symlinks"
429         default y
430         depends on FEATURE_MDEV_CONF
431         help
432           Add support for renaming devices and creating symlinks.
433
434           For more information, please see docs/mdev.txt
435
436 config FEATURE_MDEV_RENAME_REGEXP
437         bool "Support regular expressions substitutions when renaming device"
438         default y
439         depends on FEATURE_MDEV_RENAME
440         help
441           Add support for regular expressions substitutions when renaming
442           device.
443
444 config FEATURE_MDEV_EXEC
445         bool "Support command execution at device addition/removal"
446         default y
447         depends on FEATURE_MDEV_CONF
448         help
449           This adds support for an optional field to /etc/mdev.conf for
450           executing commands when devices are created/removed.
451
452           For more information, please see docs/mdev.txt
453
454 config FEATURE_MDEV_LOAD_FIRMWARE
455         bool "Support loading of firmwares"
456         default y
457         depends on MDEV
458         help
459           Some devices need to load firmware before they can be usable.
460
461           These devices will request userspace look up the files in
462           /lib/firmware/ and if it exists, send it to the kernel for
463           loading into the hardware.
464
465 config MKSWAP
466         bool "mkswap"
467         default y
468         help
469           The mkswap utility is used to configure a file or disk partition as
470           Linux swap space. This allows Linux to use the entire file or
471           partition as if it were additional RAM, which can greatly increase
472           the capability of low-memory machines. This additional memory is
473           much slower than real RAM, but can be very helpful at preventing your
474           applications being killed by the Linux out of memory (OOM) killer.
475           Once you have created swap space using 'mkswap' you need to enable
476           the swap space using the 'swapon' utility.
477
478 config FEATURE_MKSWAP_UUID
479         bool "UUID support"
480         default y
481         depends on MKSWAP
482         help
483           Generate swap spaces with universally unique identifiers.
484
485 config MORE
486         bool "more"
487         default y
488         help
489           more is a simple utility which allows you to read text one screen
490           sized page at a time. If you want to read text that is larger than
491           the screen, and you are using anything faster than a 300 baud modem,
492           you will probably find this utility very helpful. If you don't have
493           any need to reading text files, you can leave this disabled.
494
495 config MOUNT
496         bool "mount"
497         default y
498         select PLATFORM_LINUX
499         help
500           All files and filesystems in Unix are arranged into one big directory
501           tree. The 'mount' utility is used to graft a filesystem onto a
502           particular part of the tree. A filesystem can either live on a block
503           device, or it can be accessible over the network, as is the case with
504           NFS filesystems. Most people using BusyBox will also want to enable
505           the 'mount' utility.
506
507 config FEATURE_MOUNT_FAKE
508         bool "Support option -f"
509         default y
510         depends on MOUNT
511         help
512           Enable support for faking a file system mount.
513
514 config FEATURE_MOUNT_VERBOSE
515         bool "Support option -v"
516         default y
517         depends on MOUNT
518         help
519           Enable multi-level -v[vv...] verbose messages. Useful if you
520           debug mount problems and want to see what is exactly passed
521           to the kernel.
522
523 config FEATURE_MOUNT_HELPERS
524         bool "Support mount helpers"
525         default n
526         depends on MOUNT
527         help
528           Enable mounting of virtual file systems via external helpers.
529           E.g. "mount obexfs#-b00.11.22.33.44.55 /mnt" will in effect call
530           "obexfs -b00.11.22.33.44.55 /mnt"
531           Also "mount -t sometype [-o opts] fs /mnt" will try
532           "sometype [-o opts] fs /mnt" if simple mount syscall fails.
533           The idea is to use such virtual filesystems in /etc/fstab.
534
535 config FEATURE_MOUNT_LABEL
536         bool "Support specifying devices by label or UUID"
537         default y
538         depends on MOUNT
539         select VOLUMEID
540         help
541           This allows for specifying a device by label or uuid, rather than by
542           name. This feature utilizes the same functionality as blkid/findfs.
543           This also enables label or uuid support for swapon.
544
545 config FEATURE_MOUNT_NFS
546         bool "Support mounting NFS file systems"
547         default y
548         depends on MOUNT
549         select FEATURE_HAVE_RPC
550         select FEATURE_SYSLOG
551         help
552           Enable mounting of NFS file systems.
553
554 config FEATURE_MOUNT_CIFS
555         bool "Support mounting CIFS/SMB file systems"
556         default y
557         depends on MOUNT
558         help
559           Enable support for samba mounts.
560
561 config FEATURE_MOUNT_FLAGS
562         depends on MOUNT
563         bool "Support lots of -o flags in mount"
564         default y
565         help
566           Without this, mount only supports ro/rw/remount. With this, it
567           supports nosuid, suid, dev, nodev, exec, noexec, sync, async, atime,
568           noatime, diratime, nodiratime, loud, bind, move, shared, slave,
569           private, unbindable, rshared, rslave, rprivate, and runbindable.
570
571 config FEATURE_MOUNT_FSTAB
572         depends on MOUNT
573         bool "Support /etc/fstab and -a"
574         default y
575         help
576           Support mount all and looking for files in /etc/fstab.
577
578 config PIVOT_ROOT
579         bool "pivot_root"
580         default y
581         select PLATFORM_LINUX
582         help
583           The pivot_root utility swaps the mount points for the root filesystem
584           with some other mounted filesystem. This allows you to do all sorts
585           of wild and crazy things with your Linux system and is far more
586           powerful than 'chroot'.
587
588           Note: This is for initrd in linux 2.4. Under initramfs (introduced
589           in linux 2.6) use switch_root instead.
590
591 config RDATE
592         bool "rdate"
593         default y
594         help
595           The rdate utility allows you to synchronize the date and time of your
596           system clock with the date and time of a remote networked system using
597           the RFC868 protocol, which is built into the inetd daemon on most
598           systems.
599
600 config RDEV
601         bool "rdev"
602         default y
603         help
604           Print the device node associated with the filesystem mounted at '/'.
605
606 config READPROFILE
607         bool "readprofile"
608         default y
609         #select PLATFORM_LINUX
610         help
611           This allows you to parse /proc/profile for basic profiling.
612
613 config RTCWAKE
614         bool "rtcwake"
615         default y
616         select PLATFORM_LINUX
617         help
618           Enter a system sleep state until specified wakeup time.
619
620 config SCRIPT
621         bool "script"
622         default y
623         help
624           The script makes typescript of terminal session.
625
626 config SCRIPTREPLAY
627         bool "scriptreplay"
628         default y
629         help
630           This program replays a typescript, using timing information
631           given by script -t.
632
633 config SETARCH
634         bool "setarch"
635         default y
636         select PLATFORM_LINUX
637         help
638           The linux32 utility is used to create a 32bit environment for the
639           specified program (usually a shell). It only makes sense to have
640           this util on a system that supports both 64bit and 32bit userland
641           (like amd64/x86, ppc64/ppc, sparc64/sparc, etc...).
642
643 config SWAPONOFF
644         bool "swaponoff"
645         default y
646         select PLATFORM_LINUX
647         help
648           This option enables both the 'swapon' and the 'swapoff' utilities.
649           Once you have created some swap space using 'mkswap', you also need
650           to enable your swap space with the 'swapon' utility. The 'swapoff'
651           utility is used, typically at system shutdown, to disable any swap
652           space. If you are not using any swap space, you can leave this
653           option disabled.
654
655 config FEATURE_SWAPON_PRI
656         bool "Support priority option -p"
657         default y
658         depends on SWAPONOFF
659         help
660           Enable support for setting swap device priority in swapon.
661
662 config SWITCH_ROOT
663         bool "switch_root"
664         default y
665         select PLATFORM_LINUX
666         help
667           The switch_root utility is used from initramfs to select a new
668           root device. Under initramfs, you have to use this instead of
669           pivot_root. (Stop reading here if you don't care why.)
670
671           Booting with initramfs extracts a gzipped cpio archive into rootfs
672           (which is a variant of ramfs/tmpfs). Because rootfs can't be moved
673           or unmounted*, pivot_root will not work from initramfs. Instead,
674           switch_root deletes everything out of rootfs (including itself),
675           does a mount --move that overmounts rootfs with the new root, and
676           then execs the specified init program.
677
678           * Because the Linux kernel uses rootfs internally as the starting
679           and ending point for searching through the kernel's doubly linked
680           list of active mount points. That's why.
681
682 config UMOUNT
683         bool "umount"
684         default y
685         select PLATFORM_LINUX
686         help
687           When you want to remove a mounted filesystem from its current mount
688           point, for example when you are shutting down the system, the
689           'umount' utility is the tool to use. If you enabled the 'mount'
690           utility, you almost certainly also want to enable 'umount'.
691
692 config FEATURE_UMOUNT_ALL
693         bool "Support option -a"
694         default y
695         depends on UMOUNT
696         help
697           Support -a option to unmount all currently mounted filesystems.
698
699 comment "Common options for mount/umount"
700         depends on MOUNT || UMOUNT
701
702 config FEATURE_MOUNT_LOOP
703         bool "Support loopback mounts"
704         default y
705         depends on MOUNT || UMOUNT
706         help
707           Enabling this feature allows automatic mounting of files (containing
708           filesystem images) via the linux kernel's loopback devices.
709           The mount command will detect you are trying to mount a file instead
710           of a block device, and transparently associate the file with a
711           loopback device. The umount command will also free that loopback
712           device.
713
714           You can still use the 'losetup' utility (to manually associate files
715           with loop devices) if you need to do something advanced, such as
716           specify an offset or cryptographic options to the loopback device.
717           (If you don't want umount to free the loop device, use "umount -D".)
718
719 config FEATURE_MOUNT_LOOP_CREATE
720         bool "Create new loopback devices if needed"
721         default y
722         depends on FEATURE_MOUNT_LOOP
723         help
724           Linux kernels >= 2.6.24 support unlimited loopback devices. They are
725           allocated for use when trying to use a loop device. The loop device
726           must however exist.
727
728           This feature lets mount to try to create next /dev/loopN device
729           if it does not find a free one.
730
731 config FEATURE_MTAB_SUPPORT
732         bool "Support for the old /etc/mtab file"
733         default n
734         depends on MOUNT || UMOUNT
735         select FEATURE_MOUNT_FAKE
736         help
737           Historically, Unix systems kept track of the currently mounted
738           partitions in the file "/etc/mtab". These days, the kernel exports
739           the list of currently mounted partitions in "/proc/mounts", rendering
740           the old mtab file obsolete. (In modern systems, /etc/mtab should be
741           a symlink to /proc/mounts.)
742
743           The only reason to have mount maintain an /etc/mtab file itself is if
744           your stripped-down embedded system does not have a /proc directory.
745           If you must use this, keep in mind it's inherently brittle (for
746           example a mount under chroot won't update it), can't handle modern
747           features like separate per-process filesystem namespaces, requires
748           that your /etc directory be writable, tends to get easily confused
749           by --bind or --move mounts, won't update if you rename a directory
750           that contains a mount point, and so on. (In brief: avoid.)
751
752           About the only reason to use this is if you've removed /proc from
753           your kernel.
754
755 config VOLUMEID
756         bool #No description makes it a hidden option
757         default n
758
759 menu "Filesystem/Volume identification"
760         depends on VOLUMEID
761
762 config FEATURE_VOLUMEID_EXT
763         bool "Ext filesystem"
764         default y
765         depends on VOLUMEID
766         help
767           TODO
768
769 config FEATURE_VOLUMEID_BTRFS
770         bool "btrfs filesystem"
771         default y
772         depends on VOLUMEID
773         help
774           TODO
775
776 config FEATURE_VOLUMEID_REISERFS
777         bool "Reiser filesystem"
778         default y
779         depends on VOLUMEID
780         help
781           TODO
782
783 config FEATURE_VOLUMEID_FAT
784         bool "fat filesystem"
785         default y
786         depends on VOLUMEID
787         help
788           TODO
789
790 config FEATURE_VOLUMEID_HFS
791         bool "hfs filesystem"
792         default y
793         depends on VOLUMEID
794         help
795           TODO
796
797 config FEATURE_VOLUMEID_JFS
798         bool "jfs filesystem"
799         default y
800         depends on VOLUMEID
801         help
802           TODO
803
804 ### config FEATURE_VOLUMEID_UFS
805 ###     bool "ufs filesystem"
806 ###     default y
807 ###     depends on VOLUMEID
808 ###     help
809 ###       TODO
810
811 config FEATURE_VOLUMEID_XFS
812         bool "xfs filesystem"
813         default y
814         depends on VOLUMEID
815         help
816           TODO
817
818 config FEATURE_VOLUMEID_NTFS
819         bool "ntfs filesystem"
820         default y
821         depends on VOLUMEID
822         help
823           TODO
824
825 config FEATURE_VOLUMEID_ISO9660
826         bool "iso9660 filesystem"
827         default y
828         depends on VOLUMEID
829         help
830           TODO
831
832 config FEATURE_VOLUMEID_UDF
833         bool "udf filesystem"
834         default y
835         depends on VOLUMEID
836         help
837           TODO
838
839 config FEATURE_VOLUMEID_LUKS
840         bool "luks filesystem"
841         default y
842         depends on VOLUMEID
843         help
844           TODO
845
846 config FEATURE_VOLUMEID_LINUXSWAP
847         bool "linux swap filesystem"
848         default y
849         depends on VOLUMEID
850         help
851           TODO
852
853 ### config FEATURE_VOLUMEID_LVM
854 ###     bool "lvm"
855 ###     default y
856 ###     depends on VOLUMEID
857 ###     help
858 ###       TODO
859
860 config FEATURE_VOLUMEID_CRAMFS
861         bool "cramfs filesystem"
862         default y
863         depends on VOLUMEID
864         help
865           TODO
866
867 ### config FEATURE_VOLUMEID_HPFS
868 ###     bool "hpfs filesystem"
869 ###     default y
870 ###     depends on VOLUMEID
871 ###     help
872 ###       TODO
873
874 config FEATURE_VOLUMEID_ROMFS
875         bool "romfs filesystem"
876         default y
877         depends on VOLUMEID
878         help
879           TODO
880
881 config FEATURE_VOLUMEID_SYSV
882         bool "sysv filesystem"
883         default y
884         depends on VOLUMEID
885         help
886           TODO
887
888 ### config FEATURE_VOLUMEID_MINIX
889 ###     bool "minix filesystem"
890 ###     default y
891 ###     depends on VOLUMEID
892 ###     help
893 ###       TODO
894
895 ### These only detect partition tables - not used (yet?)
896 ### config FEATURE_VOLUMEID_MAC
897 ###     bool "mac filesystem"
898 ###     default y
899 ###     depends on VOLUMEID
900 ###     help
901 ###       TODO
902 ###
903 ### config FEATURE_VOLUMEID_MSDOS
904 ###     bool "msdos filesystem"
905 ###     default y
906 ###     depends on VOLUMEID
907 ###     help
908 ###       TODO
909
910 config FEATURE_VOLUMEID_OCFS2
911         bool "ocfs2 filesystem"
912         default y
913         depends on VOLUMEID
914         help
915           TODO
916
917 ### config FEATURE_VOLUMEID_HIGHPOINTRAID
918 ###     bool "highpoint raid"
919 ###     default y
920 ###     depends on VOLUMEID
921 ###     help
922 ###       TODO
923
924 ### config FEATURE_VOLUMEID_ISWRAID
925 ###     bool "intel raid"
926 ###     default y
927 ###     depends on VOLUMEID
928 ###     help
929 ###       TODO
930
931 ### config FEATURE_VOLUMEID_LSIRAID
932 ###     bool "lsi raid"
933 ###     default y
934 ###     depends on VOLUMEID
935 ###     help
936 ###       TODO
937
938 ### config FEATURE_VOLUMEID_VIARAID
939 ###     bool "via raid"
940 ###     default y
941 ###     depends on VOLUMEID
942 ###     help
943 ###       TODO
944
945 ### config FEATURE_VOLUMEID_SILICONRAID
946 ###     bool "silicon raid"
947 ###     default y
948 ###     depends on VOLUMEID
949 ###     help
950 ###       TODO
951
952 ### config FEATURE_VOLUMEID_NVIDIARAID
953 ###     bool "nvidia raid"
954 ###     default y
955 ###     depends on VOLUMEID
956 ###     help
957 ###       TODO
958
959 ### config FEATURE_VOLUMEID_PROMISERAID
960 ###     bool "promise raid"
961 ###     default y
962 ###     depends on VOLUMEID
963 ###     help
964 ###       TODO
965
966 config FEATURE_VOLUMEID_LINUXRAID
967         bool "linuxraid"
968         default y
969         depends on VOLUMEID
970         help
971           TODO
972
973 endmenu
974
975 endmenu