Config.src 873 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see docs/Kconfig-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 df, du, ls"
  24. depends on DF || DU || LS
  25. config FEATURE_HUMAN_READABLE
  26. bool "Support human readable output (example 13k, 23M, 235G)"
  27. default y
  28. depends on DF || DU || LS
  29. help
  30. Allow df, du, and ls to have human readable output.
  31. endmenu