summaryrefslogtreecommitdiffstats
path: root/rules/rootfs_init_d_files.in
blob: 4a783e6bfdd325af593015a43b1e35932857182a (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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
# ----------------------------------------------------------------------------
menu "start scripts (/etc/init.d)   "
# ----------------------------------------------------------------------------

config ROOTFS_ETC_INITD
	depends on ROOTFS
	bool
	prompt "Generic Scripts for /etc/init.d"
	default y
	select BB_CONFIG_RUN_PARTS      if BUSYBOX
	help
	  When enabled, this option copies the files from
	  ${PTXDIST_TOPDIR}/generic/etc/init.d to the target root
	  filesystem. The files contain useful defaults for most projects,
	  so if you don't intend to use your completely self-made etc
	  directory you should problably switch this on.

config ROOTFS_ETC_INITD_RCS
	bool
	prompt "rcS"
	depends on ROOTFS_ETC_INITD
	default y
	help
	  The /etc/init.d/rcS script is started by init in /etc/inittab.
	  Its main purpose is to run the other init scripts by calling
	  run-parts.

# initd startscript is for busysbox only
config ROOTFS_ETC_INITD_INETD
	depends on ROOTFS_ETC_INITD
	depends on BB_CONFIG_INETD
	bool
	prompt "inetd"
	help
	  When enabled, this option installs the generic /etc/init.d/inetd
	  file. This script starts your internet super server (inetd).
	  This is for Busybox' inetd only.

config ROOTFS_ETC_INITD_LOGROTATE
	bool
	prompt "minimal logrotate"
	depends on ROOTFS_ETC_INITD
	help
	  The /etc/init.d/logrotate script is a minimal logrotator.

config ROOTFS_ETC_INITD_MODULES
	depends on ROOTFS_ETC_INITD
	bool
	prompt "modules"
	help
	  When enabled, load all modules in /etc/modules. This requires
	  one type of the tool "grep" (from Busybox or paket procps)

menuconfig ROOTFS_ETC_INITD_NETWORKING
	depends on ROOTFS_ETC_INITD
	bool
	default y
	prompt "networking                "
	select BB_CONFIG_IFUPDOWN if BUSYBOX
	select BB_CONFIG_FEATURE_IFUPDOWN_IP if BUSYBOX
	help
	  When enabled, this option installs the generic
	  /etc/init.d/networking file. This script starts
	  your network interfaces by calling ifup -a

	config ROOTFS_ETC_INITD_NETWORKING_INTERFACES
		depends on ROOTFS_ETC_INITD
		depends on ROOTFS_ETC_INITD_NETWORKING
		string
		prompt "/etc/network/interfaces file"
		default "${PTXDIST_WORKSPACE}/projectroot/etc/network/interfaces"
		help
		  Copy this file to /etc/network/interfaces.

########################## Syslog-NG #########################################

config ROOTFS_ETC_INITD_SYSLOGNG
	depends on ROOTFS_ETC_INITD && SYSLOGNG
	bool
	default y
	prompt "syslog-ng"
	help
	  The /etc/init.d/syslog-ng script lets you control the syslog-ng daemon.

########################## Telnetd from Busysbox ############################

menuconfig ROOTFS_ETC_INITD_TELNETD
	depends on ROOTFS_ETC_INITD
	depends on BB_CONFIG_TELNETD
	depends on !BB_CONFIG_FEATURE_TELNETD_INETD
	bool
	default y
	prompt "telnetd                   "
	help
	  The /etc/init.d/telnetd script starts up your busybox based telnetd
	  daemon. Depending on your configuration utelnetd or telnetd
	  is started.

	choice
		prompt "Kind of startup script"
		default ROOTFS_ETC_INITD_TELNETD_DEFAULT
		depends on ROOTFS_ETC_INITD
		depends on ROOTFS_ETC_INITD_TELNETD

		config ROOTFS_ETC_INITD_TELNETD_DEFAULT
			bool
			prompt "Use generic"
			help
			  Installs a generic /etc/init.d/telnetd startup script.
			  See <ptxdist-install>/generic/etc/init.d/telnetd

		config ROOTFS_ETC_INITD_TELNETD_USER
			bool
			prompt "User defined"
			help
			  This uses a user defined telnetd startup script.
			  PTXdist uses file projectroot/etc/init.d/telnetd in
			  your local project
	endchoice

######################## syslogd/klogd from Busysbox ##########################

menuconfig ROOTFS_ETC_INITD_SYSLOGD_KLOGD
	depends on ROOTFS_ETC_INITD
	depends on BB_CONFIG_SYSLOGD
	bool
	prompt "syslogd                   "
	help
	  The /etc/init.d/syslogd script starts up your busybox based
	  syslogd/klogd daemon. Depending on your configuration also klogd will
	  be started.

	choice
		prompt "Kind of startup script"
		default ROOTFS_ETC_INITD_SYSLOGD_KLOGD_DEFAULT
		depends on ROOTFS_ETC_INITD
		depends on ROOTFS_ETC_INITD_SYSLOGD_KLOGD

		config ROOTFS_ETC_INITD_SYSLOGD_KLOGD_DEFAULT
			bool
			prompt "Use generic"
			help
			  Installs a generic /etc/init.d/syslogd startup script.
			  See <ptxdist-install>/generic/etc/init.d/syslogd

		config ROOTFS_ETC_INITD_SYSLOGD_KLOGD_USER
			bool
			prompt "User defined"
			help
			  This uses a user defined syslogd startup script.
			  PTXdist uses file projectroot/etc/init.d/syslogd in
			  your local project
	endchoice

########################## User startup script ##############################

# FIXME: RSC: needed somewhere? Shold be done by project specific stuff
# if needed.

config ROOTFS_ETC_INITD_STARTUP
	depends on ROOTFS_ETC_INITD
	bool
	prompt "startup"
	help
	  This script runs /home/startup if it exists and is
	  executable

########################## Banner ##########################################

menuconfig ROOTFS_ETC_INITD_BANNER
	depends on ROOTFS_ETC_INITD
	select FIGLET
	bool
	default y
	prompt "banner                    "
	help
	  This Option adds a specific vendor string to
	  the script which displays a nifty ptxdist
	   _
	  | |__   __ _ _ __  _ __   ___ _ __
	  | '_ \ / _` | '_ \| '_ \ / _ \ '__|
	  | |_) | (_| | | | | | | |  __/ |
	  |_.__/ \__,_|_| |_|_| |_|\___|_|
	  page with the hostname and other stuff at
	  startup.

	config ROOTFS_ETC_VENDOR
		depends on ROOTFS_ETC_INITD_BANNER
		string
		prompt "vendorname in /etc/init.d/banner"
		help
		  Type in here your favorite vendorname. It gets displayed
		  whenever your system starts.

########################## Apache 2 ##########################################

menuconfig ROOTFS_ETC_INITD_HTTPD
	depends on ROOTFS_ETC_INITD && APACHE2
	bool
	default y
	prompt "apache                    "
	help
	  The /etc/init.d/httpd script lets you control the apache daemon.

	choice
		prompt "Kind of startup scrict"
		depends on ROOTFS_ETC_INITD_HTTPD
		default ROOTFS_ETC_INITD_HTTPD_DEFAULT

		config ROOTFS_ETC_INITD_HTTPD_DEFAULT
			bool
			prompt "Use default httpd"
			help
			  A file from generic/etc/init.d/httpd will be used.

		config ROOTFS_ETC_INITD_HTTPD_USER
			bool
			prompt "Use your own httpd file"
			help
			  Select this, then you can enter a path and filename to your
			  own httpd startup script.
	endchoice

	config ROOTFS_ETC_INITD_HTTPD_USER_FILE
		depends on ROOTFS_ETC_INITD_HTTPD
		depends on ROOTFS_ETC_INITD_HTTPD_USER
		prompt "Path and name of your own httpd to be used"
		string
		default ""
		help
		  Enter a path and filename to be used as httpd script on your target.

########################## Dropbear ##########################################

menuconfig ROOTFS_ETC_INITD_DROPBEAR
	depends on ROOTFS_ETC_INITD && DROPBEAR
	bool
	default y
	prompt "dropbear                  "
	help
	  The /etc/init.d/dropbear script lets you control the dropbear daemon.

	choice
		prompt "Kind of startup script"
		depends on ROOTFS_ETC_INITD_DROPBEAR
		default ROOTFS_ETC_INITD_DROPBEAR_DEFAULT

		config ROOTFS_ETC_INITD_DROPBEAR_DEFAULT
			bool
			prompt "Use default dropbear"
			help
			  A file from generic/etc/init.d/dropbear will be used.

		config ROOTFS_ETC_INITD_DROPBEAR_USER
			bool
			prompt "Use your own dropbear file"
			help
			  Select this, then you can enter a path and filename to your
			  own dropbear startup script.
	endchoice

	config ROOTFS_ETC_INITD_DROPBEAR_USER_FILE
		depends on ROOTFS_ETC_INITD_DROPBEAR
		depends on ROOTFS_ETC_INITD_DROPBEAR_USER
		prompt "Path and name of your own dropbear to be used"
		string
		default ""
		help
		  Enter a path and filename to be used as dropbear script on your target.

########################## crond ##########################################
# this is for busybox' crond only
#
menuconfig ROOTFS_ETC_INITD_CROND
	depends on ROOTFS_ETC_INITD && BB_CONFIG_CROND
	bool
	default y
	prompt "crond                     "
	help
	  The /etc/init.d/crond script lets you control busybox' crond daemon.

	choice
		prompt "Kind of startup scrict"
		depends on ROOTFS_ETC_INITD_CROND
		default ROOTFS_ETC_INITD_CROND_DEFAULT

		config ROOTFS_ETC_INITD_CROND_DEFAULT
			bool
			prompt "Use generic"
			help
			  A file from generic/etc/init.d/crond will be used.

		config ROOTFS_ETC_INITD_CROND_USER
			bool
			prompt "User defined"
			help
			  This uses a user defined crond startup script.
			  PTXdist uses file projectroot/etc/init.d/crond in
			  your local project
	endchoice

######################## D-Bus ############################################

menuconfig ROOTFS_ETC_INITD_DBUS
	depends on ROOTFS_ETC_INITD
	depends on DBUS
	bool
	prompt "dbus                        "
	default y
	help
	  The /etc/init.d/dbus script starts up your D-Bus daemon (system bus).

	choice
		prompt "Kind of startup script"
		depends on ROOTFS_ETC_INITD_DBUS
		default ROOTFS_ETC_INITD_DBUS_GENERIC

		config ROOTFS_ETC_INITD_DBUS_GENERIC
			bool
			prompt "Use generic"
			help
	  		  This uses the generic configuration file for your dbus which is
			  shipped with the sources. This configuration is likely to fail
			  because it is thought for a desktop PC.

		config ROOTFS_ETC_INITD_DBUS_USER
			bool
			prompt "User defined"
			help
			  This uses a user defined /etc/init.d/dbus. PTXdist uses
			  file projectroot/etc/init.d/dbus in your local project.

	endchoice

endmenu