Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see scripts/kbuild/config-language.txt. |
| 4 | # |
| 5 | |
| 6 | menu "Debian Utilities" |
| 7 | |
| 8 | config CONFIG_MKTEMP |
| 9 | bool "mktemp" |
| 10 | default n |
| 11 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 12 | mktemp is used to create unique temporary files |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 13 | |
Glenn L McGrath | e9080c9 | 2003-11-14 10:04:33 +0000 | [diff] [blame] | 14 | config CONFIG_PIPE_PROGRESS |
| 15 | bool "pipe_progress" |
| 16 | default n |
| 17 | help |
| 18 | Display a dot to indicate pipe activity. |
| 19 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 20 | config CONFIG_READLINK |
| 21 | bool "readlink" |
| 22 | default n |
| 23 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 24 | This program reads a symbolic link and returns the name |
| 25 | of the file it points to |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 26 | |
Ned Ludd | c6fbed5 | 2004-12-08 16:47:28 +0000 | [diff] [blame] | 27 | config CONFIG_FEATURE_READLINK_FOLLOW |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 28 | bool "Enable canonicalization by following all symlinks (-f)" |
Ned Ludd | c6fbed5 | 2004-12-08 16:47:28 +0000 | [diff] [blame] | 29 | default n |
| 30 | depends on CONFIG_READLINK |
| 31 | help |
| 32 | Enable the readlink option (-f). |
| 33 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 34 | config CONFIG_RUN_PARTS |
| 35 | bool "run-parts" |
| 36 | default n |
| 37 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 38 | run-parts is a utility designed to run all the scripts in a directory. |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 39 | |
| 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 Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 43 | In this implementation of run-parts some features (such as report mode) |
Eric Andersen | dc19af4 | 2003-08-06 09:43:09 +0000 | [diff] [blame] | 44 | are not implemented. |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 45 | |
| 46 | Unless you know that run-parts is used in some of your scripts |
| 47 | you can safely say N here. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 48 | |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 49 | config CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS |
| 50 | bool "Enable long options" |
| 51 | default n |
| 52 | depends on CONFIG_RUN_PARTS && CONFIG_GETOPT_LONG |
| 53 | help |
| 54 | Support long options for the run-parts applet. |
| 55 | |
Eric Andersen | a1ed06b | 2003-07-26 09:16:00 +0000 | [diff] [blame] | 56 | config CONFIG_START_STOP_DAEMON |
| 57 | 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 | |
Bernhard Reutner-Fischer | a926f8e | 2006-06-11 17:24:01 +0000 | [diff] [blame^] | 64 | config CONFIG_FEATURE_START_STOP_DAEMON_FANCY |
| 65 | bool "Support additional arguments" |
| 66 | default y |
| 67 | depends on CONFIG_START_STOP_DAEMON |
| 68 | help |
| 69 | Support additional arguments. |
| 70 | -o|--oknodo ignored since we exit with 0 anyway |
| 71 | -v|--verbose |
| 72 | |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 73 | config CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS |
| 74 | bool "Enable long options" |
| 75 | default n |
| 76 | depends on CONFIG_START_STOP_DAEMON && CONFIG_GETOPT_LONG |
| 77 | help |
| 78 | Support long options for the start-stop-daemon applet. |
| 79 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 80 | config CONFIG_WHICH |
| 81 | bool "which" |
| 82 | default n |
| 83 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 84 | which is used to find programs in your PATH and |
| 85 | print out their pathnames. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 86 | |
| 87 | endmenu |
| 88 | |