Config.in 1.9 KB

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