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_READLINK
24 This program reads a symbolic link and returns the name
25 of the file it points to
27 config BUSYBOX_CONFIG_FEATURE_READLINK_FOLLOW
28 bool "Enable canonicalization by following all symlinks (-f)"
30 depends on BUSYBOX_CONFIG_READLINK
32 Enable the readlink option (-f).
34 config BUSYBOX_CONFIG_RUN_PARTS
38 run-parts is a utility designed to run all the scripts in a directory.
40 It is useful to set up a directory like cron.daily, where you need to
41 execute all the scripts in that directory.
43 In this implementation of run-parts some features (such as report mode)
46 Unless you know that run-parts is used in some of your scripts
47 you can safely say N here.
49 config BUSYBOX_CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS
50 bool "Enable long options"
52 depends on BUSYBOX_CONFIG_RUN_PARTS && BUSYBOX_CONFIG_GETOPT_LONG
54 Support long options for the run-parts applet.
56 config BUSYBOX_CONFIG_START_STOP_DAEMON
57 bool "start-stop-daemon"
60 start-stop-daemon is used to control the creation and
61 termination of system-level processes, usually the ones
62 started during the startup of the system.
64 config BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_FANCY
65 bool "Support additional arguments"
67 depends on BUSYBOX_CONFIG_START_STOP_DAEMON
69 Support additional arguments.
70 -o|--oknodo ignored since we exit with 0 anyway
73 config BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS
74 bool "Enable long options"
76 depends on BUSYBOX_CONFIG_START_STOP_DAEMON && BUSYBOX_CONFIG_GETOPT_LONG
78 Support long options for the start-stop-daemon applet.
80 config BUSYBOX_CONFIG_WHICH
84 which is used to find programs in your PATH and
85 print out their pathnames.