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 | |
| 14 | config CONFIG_READLINK |
| 15 | bool "readlink" |
| 16 | default n |
| 17 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame^] | 18 | This program reads a symbolic link and returns the name |
| 19 | of the file it points to |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 20 | |
| 21 | config CONFIG_RUN_PARTS |
| 22 | bool "run-parts" |
| 23 | default n |
| 24 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame^] | 25 | 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] | 26 | |
| 27 | It is useful to set up a directory like cron.daily, where you need to |
| 28 | execute all the scripts in that directory. |
| 29 | |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame^] | 30 | This implementation of run-parts does not accept long options, and |
| 31 | some features (such as report mode) are not implemented. |
Eric Andersen | 5360182 | 2002-12-05 21:12:42 +0000 | [diff] [blame] | 32 | |
| 33 | Unless you know that run-parts is used in some of your scripts |
| 34 | you can safely say N here. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 35 | |
| 36 | config CONFIG_WHICH |
| 37 | bool "which" |
| 38 | default n |
| 39 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame^] | 40 | which is used to find programs in your PATH and |
| 41 | print out their pathnames. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 42 | |
| 43 | endmenu |
| 44 | |