blob: 3d85999ffbfa12863c978c1af17a5aa36f169ed9 [file] [log] [blame]
Eric Andersenc9f20d92002-12-05 08:41:41 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Debian Utilities"
7
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00008config MKTEMP
Eric Andersenc9f20d92002-12-05 08:41:41 +00009 bool "mktemp"
10 default n
11 help
Eric Andersen65e20a32003-07-05 07:52:35 +000012 mktemp is used to create unique temporary files
Eric Andersenc9f20d92002-12-05 08:41:41 +000013
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000014config PIPE_PROGRESS
Glenn L McGrathe9080c92003-11-14 10:04:33 +000015 bool "pipe_progress"
16 default n
17 help
18 Display a dot to indicate pipe activity.
19
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000020config READLINK
Eric Andersenc9f20d92002-12-05 08:41:41 +000021 bool "readlink"
22 default n
23 help
Eric Andersen65e20a32003-07-05 07:52:35 +000024 This program reads a symbolic link and returns the name
25 of the file it points to
Eric Andersenc9f20d92002-12-05 08:41:41 +000026
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000027config FEATURE_READLINK_FOLLOW
Rob Landley2ec922e2006-04-13 23:22:16 +000028 bool "Enable canonicalization by following all symlinks (-f)"
Ned Luddc6fbed52004-12-08 16:47:28 +000029 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000030 depends on READLINK
Ned Luddc6fbed52004-12-08 16:47:28 +000031 help
32 Enable the readlink option (-f).
33
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000034config RUN_PARTS
Eric Andersenc9f20d92002-12-05 08:41:41 +000035 bool "run-parts"
36 default n
37 help
Eric Andersen65e20a32003-07-05 07:52:35 +000038 run-parts is a utility designed to run all the scripts in a directory.
Eric Andersen53601822002-12-05 21:12:42 +000039
40 It is useful to set up a directory like cron.daily, where you need to
41 execute all the scripts in that directory.
42
Eric Andersenc7bda1c2004-03-15 08:29:22 +000043 In this implementation of run-parts some features (such as report mode)
Eric Andersendc19af42003-08-06 09:43:09 +000044 are not implemented.
Eric Andersen53601822002-12-05 21:12:42 +000045
46 Unless you know that run-parts is used in some of your scripts
47 you can safely say N here.
Eric Andersenc9f20d92002-12-05 08:41:41 +000048
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000049config FEATURE_RUN_PARTS_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000050 bool "Enable long options"
51 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000052 depends on RUN_PARTS && GETOPT_LONG
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000053 help
54 Support long options for the run-parts applet.
55
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000056config START_STOP_DAEMON
Eric Andersena1ed06b2003-07-26 09:16:00 +000057 bool "start-stop-daemon"
58 default y
59 help
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.
63
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000064config FEATURE_START_STOP_DAEMON_FANCY
Bernhard Reutner-Fischera926f8e2006-06-11 17:24:01 +000065 bool "Support additional arguments"
66 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000067 depends on START_STOP_DAEMON
Bernhard Reutner-Fischera926f8e2006-06-11 17:24:01 +000068 help
69 Support additional arguments.
70 -o|--oknodo ignored since we exit with 0 anyway
71 -v|--verbose
72
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000073config FEATURE_START_STOP_DAEMON_LONG_OPTIONS
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000074 bool "Enable long options"
75 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000076 depends on START_STOP_DAEMON && GETOPT_LONG
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000077 help
78 Support long options for the start-stop-daemon applet.
79
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000080config WHICH
Eric Andersenc9f20d92002-12-05 08:41:41 +000081 bool "which"
82 default n
83 help
Eric Andersen65e20a32003-07-05 07:52:35 +000084 which is used to find programs in your PATH and
85 print out their pathnames.
Eric Andersenc9f20d92002-12-05 08:41:41 +000086
87endmenu
88