aboutsummaryrefslogtreecommitdiff
path: root/busybox/debianutils/Config.in
diff options
context:
space:
mode:
Diffstat (limited to 'busybox/debianutils/Config.in')
-rw-r--r--busybox/debianutils/Config.in58
1 files changed, 58 insertions, 0 deletions
diff --git a/busybox/debianutils/Config.in b/busybox/debianutils/Config.in
new file mode 100644
index 000000000..7cf7cadb5
--- /dev/null
+++ b/busybox/debianutils/Config.in
@@ -0,0 +1,58 @@
1#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Debian Utilities"
7
8config CONFIG_MKTEMP
9 bool "mktemp"
10 default n
11 help
12 mktemp is used to create unique temporary files
13
14config CONFIG_PIPE_PROGRESS
15 bool "pipe_progress"
16 default n
17 help
18 Display a dot to indicate pipe activity.
19
20config CONFIG_READLINK
21 bool "readlink"
22 default n
23 help
24 This program reads a symbolic link and returns the name
25 of the file it points to
26
27config CONFIG_RUN_PARTS
28 bool "run-parts"
29 default n
30 help
31 run-parts is a utility designed to run all the scripts in a directory.
32
33 It is useful to set up a directory like cron.daily, where you need to
34 execute all the scripts in that directory.
35
36 In this implementation of run-parts some features (such as report mode)
37 are not implemented.
38
39 Unless you know that run-parts is used in some of your scripts
40 you can safely say N here.
41
42config CONFIG_START_STOP_DAEMON
43 bool "start-stop-daemon"
44 default y
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
50config CONFIG_WHICH
51 bool "which"
52 default n
53 help
54 which is used to find programs in your PATH and
55 print out their pathnames.
56
57endmenu
58