Config.in 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Debian Utilities"
  6. config CONFIG_MKTEMP
  7. bool "mktemp"
  8. default n
  9. help
  10. mktemp is used to create unique temporary files
  11. config CONFIG_PIPE_PROGRESS
  12. bool "pipe_progress"
  13. default n
  14. help
  15. Display a dot to indicate pipe activity.
  16. config CONFIG_READLINK
  17. bool "readlink"
  18. default n
  19. help
  20. This program reads a symbolic link and returns the name
  21. of the file it points to
  22. config CONFIG_FEATURE_READLINK_FOLLOW
  23. bool " Enable canonicalization by following all symlinks (-f)"
  24. default n
  25. depends on CONFIG_READLINK
  26. help
  27. Enable the readlink option (-f).
  28. config CONFIG_RUN_PARTS
  29. bool "run-parts"
  30. default n
  31. help
  32. run-parts is a utility designed to run all the scripts in a directory.
  33. It is useful to set up a directory like cron.daily, where you need to
  34. execute all the scripts in that directory.
  35. In this implementation of run-parts some features (such as report mode)
  36. are not implemented.
  37. Unless you know that run-parts is used in some of your scripts
  38. you can safely say N here.
  39. config CONFIG_START_STOP_DAEMON
  40. bool "start-stop-daemon"
  41. default y
  42. help
  43. start-stop-daemon is used to control the creation and
  44. termination of system-level processes, usually the ones
  45. started during the startup of the system.
  46. config CONFIG_WHICH
  47. bool "which"
  48. default n
  49. help
  50. which is used to find programs in your PATH and
  51. print out their pathnames.
  52. endmenu