summaryrefslogtreecommitdiffstats
path: root/rules/sysvinit.in
blob: b1107dc249d9081a297e8bb9b1e3cf0abf69f78d (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
menuconfig SYSVINIT
	tristate
	prompt "SysVInit [BROKEN]"
	depends on BROKEN

if SYSVINIT

config SYSVINIT_INIT
	bool
	prompt "init"
	help
	  Install the init program, this init support runlevel

config SYSVINIT_HALT
	bool
	prompt "halt"
	help
	  The 'halt' tool brings the machine down.

config SYSVINIT_SHUTDOWN
	bool
	prompt "shutdown"
	help
	  shutdown is called by halt and reboot to perform the necesary action

config SYSVINIT_RUNLEVEL
	bool
	prompt "runlevel"
	help
	  This tool is used to switch to another runlevel.

config SYSVINIT_KILLALL5
	bool
	prompt "killall5"
	help
	  killall5 is the SystemV killall command. It sends a signal to all
	  processes except the processes in its own session, so it won't
	  kill the shell that is running the script it was called from.
	  Its primary (only) use is in the rc scripts found in the
	  /etc/init.d directory.

config SYSVINIT_SULOGIN
	bool
	prompt "sulogin"
	help
	  Single-user login

config SYSVINIT_BOOTLOGD
	bool
	prompt "bootlogd"
	help
	  Bootlogd runs in the background and copies all strings sent to
	  the /dev/console device to a logfile.

config SYSVINIT_WALL
	bool
	prompt "wall"
	help
	  wall - write a message to users

config SYSVINIT_LAST
	bool
	prompt "last"
	help
	  last - show listing of last logged in users

config SYSVINIT_MESG
	bool
	prompt "mesg"
	help
	  mesg - control write access to your terminal

config SYSVINIT_BSDINIT
	bool
	prompt "BSD Styles Init"
	depends on SYSVINIT_INIT
	help
	  It installs different script to configuration of runlevel supported in init.
	  These script use BSD style init, described in
	  http://www.linuxfromscratch.org/hints/downloads/files/bsd-init.txt

endif