summaryrefslogtreecommitdiffstats
path: root/urunlevel/runlevel/Config.in
blob: ca4c44a11cda264dde0be6799220fef91cbc29a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#
# For a description of the syntax of this configuration file,
# see scripts/kbuild/config-language.txt.
#

menu "Runlevel Utilities"

config CONFIG_BOOT_NAMED
	bool "boot_named"
	default n
	help
	  An implementation of LSB $named.

config CONFIG_BOOT_PORTMAP
	bool "boot_portmap"
	default n
	help
	  An implementation of LSB $.

config CONFIG_BOOT_SYSLOG
	bool "boot_syslog"
	default n
	help
	  An implementation of LSB $syslog.

config CONFIG_BOOT_TIME
	bool "boot_time"
	default n
	help
	  An implementation of LSB $time.

config CONFIG_INSTALL_INITD
	bool "install_initd"
	default n
	help
	  An implementation of install_initd.

if CONFIG_RC
    config CONFIG_KILLPROC
	default y
	comment "killproc (forced enabled for use with rc)"
endif
if !CONFIG_RC
    config CONFIG_KILLPROC
	bool "killproc"
	default y
	help
	  An implementation of killproc.
endif

config CONFIG_LOCAL_FS
	bool "local_fs"
	default n
	help
	  A $local_fs boot script.

if CONFIG_RC
    config CONFIG_LOG_FAILURE_MSG
	default y
	comment "log_failure_msg (forced enabled for use with rc)"
endif
if !CONFIG_RC
    config CONFIG_LOG_FAILURE_MSG
	bool "log_failure_msg"
	default y
	help
	  An implementation of log_failure_msg.
endif

if CONFIG_RC
    config CONFIG_LOG_SUCCESS_MSG
	default y
	comment "log_success_msg (forced enabled for use with rc)"
endif
if !CONFIG_RC
    config CONFIG_LOG_SUCCESS_MSG
	bool "log_success_msg"
	default y
	help
	  An implementation of log_success_msg.
endif

if CONFIG_RC
    config CONFIG_LOG_WARNING_MSG
	default y
	comment "log_warning_msg (forced enabled for use with rc)"
endif
if !CONFIG_RC
    config CONFIG_LOG_WARNING_MSG
	bool "log_warning_msg"
	default y
	help
	  An implementation of log_warning_msg.
endif

config CONFIG_NETWORK
	bool "network"
	default n
	help
	  A $network boot script.

if CONFIG_RC
    config CONFIG_PIDOFPROC
	default y
	comment "pidofproc (forced enabled for use with rc)"
endif
if !CONFIG_RC
    config CONFIG_PIDOFPROC
	bool "pidofproc"
	default y
	help
	  An implementation of pidofproc.
endif

config CONFIG_RC
	bool "rc"
	default y
	help
	  An implementation of rc.

config CONFIG_REMOTE_FS
	bool "remote_fs"
	default n
	help
	  A $remote_fs boot script.

config CONFIG_REMOVE_INITD
	bool "remove_initd"
	default n
	help
	  An implementation of remove_initd.

if CONFIG_RC
    config CONFIG_START_DAEMON
	default y
	comment "start_daemon (forced enabled for use with rc)"
endif
if !CONFIG_RC
    config CONFIG_START_DAEMON
	bool "start_daemon"
	default y
	help
	  An implementation of start_daemon.
endif

config CONFIG_UDHCPC_SCRIPT
	bool "udhcpc_script"
	default n
	help
	  An implementation of udhcpc.script.

endmenu