Config.src 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Coreutils"
  6. INSERT
  7. comment "Common options"
  8. config FEATURE_VERBOSE
  9. bool "Support verbose options (usually -v) for various applets"
  10. default y
  11. help
  12. Enable cp -v, rm -v and similar messages.
  13. Also enables long option (--verbose) if it exists.
  14. Without this option, -v is accepted but ignored.
  15. comment "Common options for cp and mv"
  16. depends on CP || MV
  17. config FEATURE_PRESERVE_HARDLINKS
  18. bool "Preserve hard links"
  19. default y
  20. depends on CP || MV
  21. help
  22. Allow cp and mv to preserve hard links.
  23. comment "Common options for ls, more and telnet"
  24. depends on LS || MORE || TELNET
  25. config FEATURE_AUTOWIDTH
  26. bool "Calculate terminal & column widths"
  27. default y
  28. depends on LS || MORE || TELNET
  29. help
  30. This option allows utilities such as 'ls', 'more' and 'telnet'
  31. to determine the width of the screen, which can allow them to
  32. display additional text or avoid wrapping text onto the next line.
  33. If you leave this disabled, your utilities will be especially
  34. primitive and will be unable to determine the current screen width.
  35. comment "Common options for df, du, ls"
  36. depends on DF || DU || LS
  37. config FEATURE_HUMAN_READABLE
  38. bool "Support for human readable output (example 13k, 23M, 235G)"
  39. default y
  40. depends on DF || DU || LS
  41. help
  42. Allow df, du, and ls to have human readable output.
  43. endmenu