Config.src 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. INSERT
  7. config CHATTR
  8. bool "chattr"
  9. default y
  10. help
  11. chattr changes the file attributes on a second extended file system.
  12. ### config E2FSCK
  13. ### bool "e2fsck"
  14. ### default y
  15. ### help
  16. ### e2fsck is used to check Linux second extended file systems (ext2fs).
  17. ### e2fsck also supports ext2 filesystems countaining a journal (ext3).
  18. ### The normal compat symlinks 'fsck.ext2' and 'fsck.ext3' are also
  19. ### provided.
  20. config FSCK
  21. bool "fsck"
  22. default y
  23. help
  24. fsck is used to check and optionally repair one or more filesystems.
  25. In actuality, fsck is simply a front-end for the various file system
  26. checkers (fsck.fstype) available under Linux.
  27. config LSATTR
  28. bool "lsattr"
  29. default y
  30. help
  31. lsattr lists the file attributes on a second extended file system.
  32. ### config MKE2FS
  33. ### bool "mke2fs"
  34. ### default y
  35. ### help
  36. ### mke2fs is used to create an ext2/ext3 filesystem. The normal compat
  37. ### symlinks 'mkfs.ext2' and 'mkfs.ext3' are also provided.
  38. config TUNE2FS
  39. bool "tune2fs"
  40. default n # off: it is too limited compared to upstream version
  41. help
  42. tune2fs allows the system administrator to adjust various tunable
  43. filesystem parameters on Linux ext2/ext3 filesystems.
  44. ### config E2LABEL
  45. ### bool "e2label"
  46. ### default y
  47. ### depends on TUNE2FS
  48. ### help
  49. ### e2label will display or change the filesystem label on the ext2
  50. ### filesystem located on device.
  51. ### NB: this one is now provided by util-linux/volume_id/*
  52. ### config FINDFS
  53. ### bool "findfs"
  54. ### default y
  55. ### depends on TUNE2FS
  56. ### help
  57. ### findfs will search the disks in the system looking for a filesystem
  58. ### which has a label matching label or a UUID equal to uuid.
  59. endmenu