Config.in 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Linux Ext2 FS Progs"
  6. config CHATTR
  7. bool "chattr"
  8. default n
  9. help
  10. chattr changes the file attributes on a second extended file system.
  11. config E2FSCK
  12. bool "e2fsck"
  13. default n
  14. help
  15. e2fsck is used to check Linux second extended file systems (ext2fs).
  16. e2fsck also supports ext2 filesystems countaining a journal (ext3).
  17. The normal compat symlinks 'fsck.ext2' and 'fsck.ext3' are also
  18. provided.
  19. config FSCK
  20. bool "fsck"
  21. default n
  22. help
  23. fsck is used to check and optionally repair one or more filesystems.
  24. In actuality, fsck is simply a front-end for the various file system
  25. checkers (fsck.fstype) available under Linux.
  26. config LSATTR
  27. bool "lsattr"
  28. default n
  29. help
  30. lsattr lists the file attributes on a second extended file system.
  31. config MKE2FS
  32. bool "mke2fs"
  33. default n
  34. help
  35. mke2fs is used to create an ext2/ext3 filesystem. The normal compat
  36. symlinks 'mkfs.ext2' and 'mkfs.ext3' are also provided.
  37. config TUNE2FS
  38. bool "tune2fs"
  39. default n
  40. help
  41. tune2fs allows the system administrator to adjust various tunable
  42. filesystem parameters on Linux ext2/ext3 filesystems.
  43. config E2LABEL
  44. bool "e2label"
  45. default n
  46. depends on TUNE2FS
  47. help
  48. e2label will display or change the filesystem label on the ext2
  49. filesystem located on device.
  50. config FINDFS
  51. bool "findfs"
  52. default n
  53. depends on TUNE2FS
  54. help
  55. findfs will search the disks in the system looking for a filesystem
  56. which has a label matching label or a UUID equal to uuid.
  57. endmenu