Config.src 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. INSERT
  7. config MKTEMP
  8. bool "mktemp"
  9. default y
  10. help
  11. mktemp is used to create unique temporary files
  12. config PIPE_PROGRESS
  13. bool "pipe_progress"
  14. default y
  15. help
  16. Display a dot to indicate pipe activity.
  17. config RUN_PARTS
  18. bool "run-parts"
  19. default y
  20. help
  21. run-parts is a utility designed to run all the scripts in a directory.
  22. It is useful to set up a directory like cron.daily, where you need to
  23. execute all the scripts in that directory.
  24. In this implementation of run-parts some features (such as report
  25. mode) are not implemented.
  26. Unless you know that run-parts is used in some of your scripts
  27. you can safely say N here.
  28. config FEATURE_RUN_PARTS_LONG_OPTIONS
  29. bool "Enable long options"
  30. default y
  31. depends on RUN_PARTS && LONG_OPTS
  32. help
  33. Support long options for the run-parts applet.
  34. config FEATURE_RUN_PARTS_FANCY
  35. bool "Support additional arguments"
  36. default y
  37. depends on RUN_PARTS
  38. help
  39. Support additional options:
  40. -l --list print the names of the all matching files (not
  41. limited to executables), but don't actually run them.
  42. config START_STOP_DAEMON
  43. bool "start-stop-daemon"
  44. default y
  45. help
  46. start-stop-daemon is used to control the creation and
  47. termination of system-level processes, usually the ones
  48. started during the startup of the system.
  49. config FEATURE_START_STOP_DAEMON_FANCY
  50. bool "Support additional arguments"
  51. default y
  52. depends on START_STOP_DAEMON
  53. help
  54. Support additional arguments.
  55. -o|--oknodo ignored since we exit with 0 anyway
  56. -v|--verbose
  57. -N|--nicelevel N
  58. config FEATURE_START_STOP_DAEMON_LONG_OPTIONS
  59. bool "Enable long options"
  60. default y
  61. depends on START_STOP_DAEMON && LONG_OPTS
  62. help
  63. Support long options for the start-stop-daemon applet.
  64. config WHICH
  65. bool "which"
  66. default y
  67. help
  68. which is used to find programs in your PATH and
  69. print out their pathnames.
  70. endmenu