source: MondoRescue/branches/3.2/mindi-busybox/debianutils/Config.src@ 3186

Last change on this file since 3186 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File size: 2.0 KB
Line 
1#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Debian Utilities"
7
8INSERT
9
10config MKTEMP
11 bool "mktemp"
12 default y
13 help
14 mktemp is used to create unique temporary files
15
16config PIPE_PROGRESS
17 bool "pipe_progress"
18 default y
19 help
20 Display a dot to indicate pipe activity.
21
22config RUN_PARTS
23 bool "run-parts"
24 default y
25 help
26 run-parts is a utility designed to run all the scripts in a directory.
27
28 It is useful to set up a directory like cron.daily, where you need to
29 execute all the scripts in that directory.
30
31 In this implementation of run-parts some features (such as report
32 mode) are not implemented.
33
34 Unless you know that run-parts is used in some of your scripts
35 you can safely say N here.
36
37config FEATURE_RUN_PARTS_LONG_OPTIONS
38 bool "Enable long options"
39 default y
40 depends on RUN_PARTS && LONG_OPTS
41 help
42 Support long options for the run-parts applet.
43
44config FEATURE_RUN_PARTS_FANCY
45 bool "Support additional arguments"
46 default y
47 depends on RUN_PARTS
48 help
49 Support additional options:
50 -l --list print the names of the all matching files (not
51 limited to executables), but don't actually run them.
52
53config START_STOP_DAEMON
54 bool "start-stop-daemon"
55 default y
56 help
57 start-stop-daemon is used to control the creation and
58 termination of system-level processes, usually the ones
59 started during the startup of the system.
60
61config FEATURE_START_STOP_DAEMON_FANCY
62 bool "Support additional arguments"
63 default y
64 depends on START_STOP_DAEMON
65 help
66 Support additional arguments.
67 -o|--oknodo ignored since we exit with 0 anyway
68 -v|--verbose
69 -N|--nicelevel N
70
71config FEATURE_START_STOP_DAEMON_LONG_OPTIONS
72 bool "Enable long options"
73 default y
74 depends on START_STOP_DAEMON && LONG_OPTS
75 help
76 Support long options for the start-stop-daemon applet.
77
78config WHICH
79 bool "which"
80 default y
81 help
82 which is used to find programs in your PATH and
83 print out their pathnames.
84
85endmenu
Note: See TracBrowser for help on using the repository browser.