Config.in 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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 MKTEMP
  7. bool "mktemp"
  8. default n
  9. help
  10. mktemp is used to create unique temporary files
  11. config PIPE_PROGRESS
  12. bool "pipe_progress"
  13. default n
  14. help
  15. Display a dot to indicate pipe activity.
  16. 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 FEATURE_READLINK_FOLLOW
  23. bool "Enable canonicalization by following all symlinks (-f)"
  24. default n
  25. depends on READLINK
  26. help
  27. Enable the readlink option (-f).
  28. 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 FEATURE_RUN_PARTS_LONG_OPTIONS
  40. bool "Enable long options"
  41. default n
  42. depends on RUN_PARTS && GETOPT_LONG
  43. help
  44. Support long options for the run-parts applet.
  45. config START_STOP_DAEMON
  46. bool "start-stop-daemon"
  47. default y
  48. help
  49. start-stop-daemon is used to control the creation and
  50. termination of system-level processes, usually the ones
  51. started during the startup of the system.
  52. config FEATURE_START_STOP_DAEMON_FANCY
  53. bool "Support additional arguments"
  54. default y
  55. depends on START_STOP_DAEMON
  56. help
  57. Support additional arguments.
  58. -o|--oknodo ignored since we exit with 0 anyway
  59. -v|--verbose
  60. config FEATURE_START_STOP_DAEMON_LONG_OPTIONS
  61. bool "Enable long options"
  62. default n
  63. depends on START_STOP_DAEMON && GETOPT_LONG
  64. help
  65. Support long options for the start-stop-daemon applet.
  66. config WHICH
  67. bool "which"
  68. default n
  69. help
  70. which is used to find programs in your PATH and
  71. print out their pathnames.
  72. endmenu