blob: f13d56ec7206e8cebac326b7fcc6866f8c3c68fc [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
8config CONFIG_MKTEMP
9 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
Glenn L McGrathe9080c92003-11-14 10:04:33 +000014config CONFIG_PIPE_PROGRESS
15 bool "pipe_progress"
16 default n
17 help
18 Display a dot to indicate pipe activity.
19
Eric Andersenc9f20d92002-12-05 08:41:41 +000020config CONFIG_READLINK
21 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
Ned Luddc6fbed52004-12-08 16:47:28 +000027config CONFIG_FEATURE_READLINK_FOLLOW
28 bool " Enable canonicalization by following all symlinks (-f)"
29 default n
30 depends on CONFIG_READLINK
31 help
32 Enable the readlink option (-f).
33
Eric Andersenc9f20d92002-12-05 08:41:41 +000034config CONFIG_RUN_PARTS
35 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
Eric Andersena1ed06b2003-07-26 09:16:00 +000049config CONFIG_START_STOP_DAEMON
50 bool "start-stop-daemon"
51 default y
52 help
53 start-stop-daemon is used to control the creation and
54 termination of system-level processes, usually the ones
55 started during the startup of the system.
56
Eric Andersenc9f20d92002-12-05 08:41:41 +000057config CONFIG_WHICH
58 bool "which"
59 default n
60 help
Eric Andersen65e20a32003-07-05 07:52:35 +000061 which is used to find programs in your PATH and
62 print out their pathnames.
Eric Andersenc9f20d92002-12-05 08:41:41 +000063
64endmenu
65