Magellan Linux

Contents of /trunk/mkinitrd-magellan/busybox/debianutils/Config.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (show annotations) (download)
Sat Sep 1 22:45:15 2007 UTC (16 years, 8 months ago) by niro
File size: 2043 byte(s)
-import if magellan mkinitrd; it is a fork of redhats mkinitrd-5.0.8 with all magellan patches and features; deprecates magellan-src/mkinitrd

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 MKTEMP
9 bool "mktemp"
10 default n
11 help
12 mktemp is used to create unique temporary files
13
14 config PIPE_PROGRESS
15 bool "pipe_progress"
16 default n
17 help
18 Display a dot to indicate pipe activity.
19
20 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 FEATURE_READLINK_FOLLOW
28 bool "Enable canonicalization by following all symlinks (-f)"
29 default n
30 depends on READLINK
31 help
32 Enable the readlink option (-f).
33
34 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 FEATURE_RUN_PARTS_LONG_OPTIONS
50 bool "Enable long options"
51 default n
52 depends on RUN_PARTS && GETOPT_LONG
53 help
54 Support long options for the run-parts applet.
55
56 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
64 config FEATURE_START_STOP_DAEMON_FANCY
65 bool "Support additional arguments"
66 default y
67 depends on START_STOP_DAEMON
68 help
69 Support additional arguments.
70 -o|--oknodo ignored since we exit with 0 anyway
71 -v|--verbose
72
73 config FEATURE_START_STOP_DAEMON_LONG_OPTIONS
74 bool "Enable long options"
75 default n
76 depends on START_STOP_DAEMON && GETOPT_LONG
77 help
78 Support long options for the start-stop-daemon applet.
79
80 config WHICH
81 bool "which"
82 default n
83 help
84 which is used to find programs in your PATH and
85 print out their pathnames.
86
87 endmenu
88