2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
6 menu "Debian Utilities"
8 config BUSYBOX_CONFIG_MKTEMP
12 mktemp is used to create unique temporary files
14 config BUSYBOX_CONFIG_PIPE_PROGRESS
18 Display a dot to indicate pipe activity.
20 config BUSYBOX_CONFIG_RUN_PARTS
24 run-parts is a utility designed to run all the scripts in a directory.
26 It is useful to set up a directory like cron.daily, where you need to
27 execute all the scripts in that directory.
29 In this implementation of run-parts some features (such as report mode)
32 Unless you know that run-parts is used in some of your scripts
33 you can safely say N here.
35 config BUSYBOX_CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS
36 bool "Enable long options"
38 depends on BUSYBOX_CONFIG_RUN_PARTS && BUSYBOX_CONFIG_GETOPT_LONG
40 Support long options for the run-parts applet.
42 config BUSYBOX_CONFIG_FEATURE_RUN_PARTS_FANCY
43 bool "Support additional arguments"
45 depends on BUSYBOX_CONFIG_RUN_PARTS
47 Support additional options:
48 -l --list print the names of the all matching files (not
49 limited to executables), but don't actually run them.
51 config BUSYBOX_CONFIG_START_STOP_DAEMON
52 bool "start-stop-daemon"
55 start-stop-daemon is used to control the creation and
56 termination of system-level processes, usually the ones
57 started during the startup of the system.
59 config BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_FANCY
60 bool "Support additional arguments"
62 depends on BUSYBOX_CONFIG_START_STOP_DAEMON
64 Support additional arguments.
65 -o|--oknodo ignored since we exit with 0 anyway
68 config BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS
69 bool "Enable long options"
71 depends on BUSYBOX_CONFIG_START_STOP_DAEMON && BUSYBOX_CONFIG_GETOPT_LONG
73 Support long options for the start-stop-daemon applet.
75 config BUSYBOX_CONFIG_WHICH
79 which is used to find programs in your PATH and
80 print out their pathnames.