Config.in 2.1 KB

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