Config.in 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. # DO NOT EDIT. This file is generated from Config.src
  2. #
  3. # For a description of the syntax of this configuration file,
  4. # see scripts/kbuild/config-language.txt.
  5. #
  6. menu "Debian Utilities"
  7. config BUSYBOX_MKTEMP
  8. bool "mktemp"
  9. default n
  10. help
  11. mktemp is used to create unique temporary files
  12. config BUSYBOX_PIPE_PROGRESS
  13. bool "pipe_progress"
  14. default n
  15. help
  16. Display a dot to indicate pipe activity.
  17. config BUSYBOX_RUN_PARTS
  18. bool "run-parts"
  19. default n
  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 BUSYBOX_FEATURE_RUN_PARTS_LONG_OPTIONS
  29. bool "Enable long options"
  30. default n
  31. depends on BUSYBOX_RUN_PARTS && BUSYBOX_LONG_OPTS
  32. help
  33. Support long options for the run-parts applet.
  34. config BUSYBOX_FEATURE_RUN_PARTS_FANCY
  35. bool "Support additional arguments"
  36. default n
  37. depends on BUSYBOX_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 BUSYBOX_START_STOP_DAEMON
  43. bool "start-stop-daemon"
  44. default n
  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 BUSYBOX_FEATURE_START_STOP_DAEMON_FANCY
  50. bool "Support additional arguments"
  51. default n
  52. depends on BUSYBOX_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 BUSYBOX_FEATURE_START_STOP_DAEMON_LONG_OPTIONS
  59. bool "Enable long options"
  60. default n
  61. depends on BUSYBOX_START_STOP_DAEMON && BUSYBOX_LONG_OPTS
  62. help
  63. Support long options for the start-stop-daemon applet.
  64. config BUSYBOX_WHICH
  65. bool "which"
  66. default n
  67. help
  68. which is used to find programs in your PATH and
  69. print out their pathnames.
  70. endmenu