update busybox menuconfig to 1.1.1, should fix the "missing reboot" bug
[openwrt.git] / package / busybox / config / debianutils / Config.in
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 BUSYBOX_CONFIG_MKTEMP
9         bool "mktemp"
10         default y
11         help
12           mktemp is used to create unique temporary files
13
14 config BUSYBOX_CONFIG_PIPE_PROGRESS
15         bool "pipe_progress"
16         default n
17         help
18           Display a dot to indicate pipe activity.
19
20 config BUSYBOX_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
27 config BUSYBOX_CONFIG_FEATURE_READLINK_FOLLOW
28         bool "  Enable canonicalization by following all symlinks (-f)"
29         default n
30         depends on BUSYBOX_CONFIG_READLINK
31         help
32           Enable the readlink option (-f).
33
34 config BUSYBOX_CONFIG_RUN_PARTS
35         bool "run-parts"
36         default n
37         help
38           run-parts is a utility designed to run all the scripts in a directory.
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
43           In this implementation of run-parts some features (such as report mode)
44           are not implemented.
45
46           Unless you know that run-parts is used in some of your scripts
47           you can safely say N here.
48
49 config BUSYBOX_CONFIG_START_STOP_DAEMON
50         bool "start-stop-daemon"
51         default n
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
57 config BUSYBOX_CONFIG_WHICH
58         bool "which"
59         default y
60         help
61           which is used to find programs in your PATH and
62           print out their pathnames.
63
64 endmenu
65