Config.in 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 BUSYBOX_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 BUSYBOX_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 BUSYBOX_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 BUSYBOX_TUNE2FS
  47. ### help
  48. ### e2label will display or change the filesystem label on the ext2
  49. ### filesystem located on device.
  50. ### NB: this one is now provided by util-linux/volume_id/*
  51. ### config FINDFS
  52. ### bool "findfs"
  53. ### default n
  54. ### depends on BUSYBOX_TUNE2FS
  55. ### help
  56. ### findfs will search the disks in the system looking for a filesystem
  57. ### which has a label matching label or a UUID equal to uuid.
  58. endmenu