Config.src 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see docs/Kconfig-language.txt.
  4. #
  5. menu "Coreutils"
  6. config FEATURE_VERBOSE
  7. bool "Support verbose options (usually -v) for various applets"
  8. default y
  9. help
  10. Enable cp -v, rm -v and similar messages.
  11. Also enables long option (--verbose) if it exists.
  12. Without this option, -v is accepted but ignored.
  13. comment "Common options for date and touch"
  14. config FEATURE_TIMEZONE
  15. bool "Allow timezone in dates"
  16. default y
  17. depends on DESKTOP
  18. help
  19. Permit the use of timezones when parsing user-provided data
  20. strings, e.g. '1996-04-09 12:45:00 -0500'.
  21. This requires support for the '%z' extension to strptime() which
  22. may not be available in all implementations.
  23. comment "Common options for cp and mv"
  24. depends on CP || MV
  25. config FEATURE_PRESERVE_HARDLINKS
  26. bool "Preserve hard links"
  27. default y
  28. depends on CP || MV
  29. help
  30. Allow cp and mv to preserve hard links.
  31. comment "Common options for df, du, ls"
  32. depends on DF || DU || LS
  33. config FEATURE_HUMAN_READABLE
  34. bool "Support human readable output (example 13k, 23M, 235G)"
  35. default y
  36. depends on DF || DU || LS
  37. help
  38. Allow df, du, and ls to have human readable output.
  39. INSERT
  40. endmenu