diff options
Diffstat (limited to 'util-linux/Config.in')
-rw-r--r-- | util-linux/Config.in | 229 |
1 files changed, 229 insertions, 0 deletions
diff --git a/util-linux/Config.in b/util-linux/Config.in index 3b0f778cb..552ca0f31 100644 --- a/util-linux/Config.in +++ b/util-linux/Config.in | |||
@@ -150,6 +150,17 @@ config FEATURE_FDISK_ADVANCED | |||
150 | partition, and similarly evil things. Unless you have a very good | 150 | partition, and similarly evil things. Unless you have a very good |
151 | reason you would be wise to leave this disabled. | 151 | reason you would be wise to leave this disabled. |
152 | 152 | ||
153 | config FINDFS | ||
154 | bool "findfs" | ||
155 | default n | ||
156 | select VOLUMEID | ||
157 | help | ||
158 | This is similar to the findfs program that is part of the e2fsprogs | ||
159 | package. However, the e2fsprogs version only support ext2/3. This | ||
160 | version supports those in addition to FAT, swap, and ReiserFS. | ||
161 | WARNING: | ||
162 | With all submodules selected, it will add ~11k to busybox. | ||
163 | |||
153 | config FREERAMDISK | 164 | config FREERAMDISK |
154 | bool "freeramdisk" | 165 | bool "freeramdisk" |
155 | default n | 166 | default n |
@@ -375,6 +386,215 @@ config FEATURE_USE_TERMIOS | |||
375 | will be unable to determine the current screen size, and will be | 386 | will be unable to determine the current screen size, and will be |
376 | unable to move the cursor. | 387 | unable to move the cursor. |
377 | 388 | ||
389 | config VOLUMEID | ||
390 | bool "Routines for detecting label and uuid on common filesystems" | ||
391 | default n | ||
392 | help | ||
393 | TODO | ||
394 | |||
395 | config FEATURE_VOLUMEID_EXT | ||
396 | bool "Ext filesystem" | ||
397 | default n | ||
398 | depends on VOLUMEID | ||
399 | help | ||
400 | TODO | ||
401 | |||
402 | config FEATURE_VOLUMEID_REISERFS | ||
403 | bool "Reiser filesystem" | ||
404 | default n | ||
405 | depends on VOLUMEID | ||
406 | help | ||
407 | TODO | ||
408 | |||
409 | config FEATURE_VOLUMEID_FAT | ||
410 | bool "fat filesystem" | ||
411 | default n | ||
412 | depends on VOLUMEID | ||
413 | help | ||
414 | TODO | ||
415 | |||
416 | config FEATURE_VOLUMEID_HFS | ||
417 | bool "hfs filesystem" | ||
418 | default n | ||
419 | depends on VOLUMEID | ||
420 | help | ||
421 | TODO | ||
422 | |||
423 | config FEATURE_VOLUMEID_JFS | ||
424 | bool "jfs filesystem" | ||
425 | default n | ||
426 | depends on VOLUMEID | ||
427 | help | ||
428 | TODO | ||
429 | |||
430 | config FEATURE_VOLUMEID_UFS | ||
431 | bool "ufs filesystem" | ||
432 | default n | ||
433 | depends on VOLUMEID | ||
434 | help | ||
435 | TODO | ||
436 | |||
437 | config FEATURE_VOLUMEID_XFS | ||
438 | bool "xfs filesystem" | ||
439 | default n | ||
440 | depends on VOLUMEID | ||
441 | help | ||
442 | TODO | ||
443 | |||
444 | config FEATURE_VOLUMEID_NTFS | ||
445 | bool "ntfs filesystem" | ||
446 | default n | ||
447 | depends on VOLUMEID | ||
448 | help | ||
449 | TODO | ||
450 | |||
451 | config FEATURE_VOLUMEID_ISO9660 | ||
452 | bool "iso9660 filesystem" | ||
453 | default n | ||
454 | depends on VOLUMEID | ||
455 | help | ||
456 | TODO | ||
457 | |||
458 | config FEATURE_VOLUMEID_UDF | ||
459 | bool "udf filesystem" | ||
460 | default n | ||
461 | depends on VOLUMEID | ||
462 | help | ||
463 | TODO | ||
464 | |||
465 | config FEATURE_VOLUMEID_LUKS | ||
466 | bool "luks filesystem" | ||
467 | default n | ||
468 | depends on VOLUMEID | ||
469 | help | ||
470 | TODO | ||
471 | |||
472 | config FEATURE_VOLUMEID_LINUXSWAP | ||
473 | bool "linux swap filesystem" | ||
474 | default n | ||
475 | depends on VOLUMEID | ||
476 | help | ||
477 | TODO | ||
478 | |||
479 | config FEATURE_VOLUMEID_LVM | ||
480 | bool "lvm" | ||
481 | default n | ||
482 | depends on VOLUMEID | ||
483 | help | ||
484 | TODO | ||
485 | |||
486 | config FEATURE_VOLUMEID_CRAMFS | ||
487 | bool "cramfs filesystem" | ||
488 | default n | ||
489 | depends on VOLUMEID | ||
490 | help | ||
491 | TODO | ||
492 | |||
493 | config FEATURE_VOLUMEID_HPFS | ||
494 | bool "hpfs filesystem" | ||
495 | default n | ||
496 | depends on VOLUMEID | ||
497 | help | ||
498 | TODO | ||
499 | |||
500 | config FEATURE_VOLUMEID_ROMFS | ||
501 | bool "romfs filesystem" | ||
502 | default n | ||
503 | depends on VOLUMEID | ||
504 | help | ||
505 | TODO | ||
506 | |||
507 | config FEATURE_VOLUMEID_SYSV | ||
508 | bool "sysv filesystem" | ||
509 | default n | ||
510 | depends on VOLUMEID | ||
511 | help | ||
512 | TODO | ||
513 | |||
514 | config FEATURE_VOLUMEID_MINIX | ||
515 | bool "minix filesystem" | ||
516 | default n | ||
517 | depends on VOLUMEID | ||
518 | help | ||
519 | TODO | ||
520 | |||
521 | config FEATURE_VOLUMEID_MAC | ||
522 | bool "mac filesystem" | ||
523 | default n | ||
524 | depends on VOLUMEID | ||
525 | help | ||
526 | TODO | ||
527 | |||
528 | config FEATURE_VOLUMEID_MSDOS | ||
529 | bool "msdos filesystem" | ||
530 | default n | ||
531 | depends on VOLUMEID | ||
532 | help | ||
533 | TODO | ||
534 | |||
535 | config FEATURE_VOLUMEID_OCFS2 | ||
536 | bool "ocfs2 filesystem" | ||
537 | default n | ||
538 | depends on VOLUMEID | ||
539 | help | ||
540 | TODO | ||
541 | |||
542 | config FEATURE_VOLUMEID_HIGHPOINTRAID | ||
543 | bool "highpoint raid" | ||
544 | default n | ||
545 | depends on VOLUMEID | ||
546 | help | ||
547 | TODO | ||
548 | |||
549 | config FEATURE_VOLUMEID_ISWRAID | ||
550 | bool "intel raid" | ||
551 | default n | ||
552 | depends on VOLUMEID | ||
553 | help | ||
554 | TODO | ||
555 | |||
556 | config FEATURE_VOLUMEID_LSIRAID | ||
557 | bool "lsi raid" | ||
558 | default n | ||
559 | depends on VOLUMEID | ||
560 | help | ||
561 | TODO | ||
562 | |||
563 | config FEATURE_VOLUMEID_VIARAID | ||
564 | bool "via raid" | ||
565 | default n | ||
566 | depends on VOLUMEID | ||
567 | help | ||
568 | TODO | ||
569 | |||
570 | config FEATURE_VOLUMEID_SILICONRAID | ||
571 | bool "silicon raid" | ||
572 | default n | ||
573 | depends on VOLUMEID | ||
574 | help | ||
575 | TODO | ||
576 | |||
577 | config FEATURE_VOLUMEID_NVIDIARAID | ||
578 | bool "nvidia raid" | ||
579 | default n | ||
580 | depends on VOLUMEID | ||
581 | help | ||
582 | TODO | ||
583 | |||
584 | config FEATURE_VOLUMEID_PROMISERAID | ||
585 | bool "promise raid" | ||
586 | default n | ||
587 | depends on VOLUMEID | ||
588 | help | ||
589 | TODO | ||
590 | |||
591 | config FEATURE_VOLUMEID_LINUXRAID | ||
592 | bool "linuxraid" | ||
593 | default n | ||
594 | depends on VOLUMEID | ||
595 | help | ||
596 | TODO | ||
597 | |||
378 | config MOUNT | 598 | config MOUNT |
379 | bool "mount" | 599 | bool "mount" |
380 | default n | 600 | default n |
@@ -414,6 +634,15 @@ config FEATURE_MOUNT_HELPERS | |||
414 | "sometype [-o opts] fs /mnt" if simple mount syscall fails. | 634 | "sometype [-o opts] fs /mnt" if simple mount syscall fails. |
415 | The idea is to use such virtual filesystems in /etc/fstab. | 635 | The idea is to use such virtual filesystems in /etc/fstab. |
416 | 636 | ||
637 | config FEATURE_MOUNT_LABEL | ||
638 | bool " Support specifiying devices by label or UUID" | ||
639 | default n | ||
640 | depends on MOUNT | ||
641 | select FINDFS | ||
642 | help | ||
643 | This allows for specifying a device by label or uuid, rather than by | ||
644 | name. This feature utilizes the same functionality as findfs. | ||
645 | |||
417 | config FEATURE_MOUNT_NFS | 646 | config FEATURE_MOUNT_NFS |
418 | bool "Support mounting NFS file systems" | 647 | bool "Support mounting NFS file systems" |
419 | default n | 648 | default n |