Magellan Linux

Annotation of /trunk/mkinitrd-magellan/busybox/debianutils/Config.src

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1123 - (hide annotations) (download) (as text)
Wed Aug 18 21:56:57 2010 UTC (14 years, 1 month ago) by niro
File MIME type: application/x-wais-source
File size: 2026 byte(s)
-updated to busybox-1.17.1
1 niro 1123 #
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     INSERT
9    
10     config MKTEMP
11     bool "mktemp"
12     default y
13     help
14     mktemp is used to create unique temporary files
15    
16     config PIPE_PROGRESS
17     bool "pipe_progress"
18     default y
19     help
20     Display a dot to indicate pipe activity.
21    
22     config 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    
37     config 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    
44     config 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    
53     config 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    
61     config 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    
71     config 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    
78     config 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    
85     endmenu
86