summaryrefslogtreecommitdiffstats
path: root/rules/systemd.in
blob: bdbce8f0bdaaa2b234130bade8bf346d731f3d0e (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
## SECTION=shell_and_console

menuconfig SYSTEMD
	tristate
	select HOST_INTLTOOL
	select HOST_GPERF
	select ROOTFS_RUN
	select LIBC_PTHREAD
	select LIBC_RT
	select DBUS
	select LIBCAP
	select PYTHON if SYSTEMD_ANALYZE
	select DBUS_PYTHON if SYSTEMD_ANALYZE
	select UDEV
	select UDEV_LIBUDEV
	select UDEV_EXPERIMENTAL
	prompt "systemd                       "
	help
	  systemd is a system and session manager for Linux, compatible with SysV
	  and LSB init scripts. systemd provides aggressive parallelization
	  capabilities, uses socket and D-Bus activation for starting services,
	  offers on-demand starting of daemons, keeps track of processes using
	  Linux cgroups, supports snapshotting and restoring of the system state,
	  maintains mount and automount points and implements an elaborate
	  transactional dependency-based service control logic. It can work as a
	  drop-in replacement for sysvinit.

	  http://www.freedesktop.org/wiki/Software/systemd

if SYSTEMD

config SYSTEMD_DISABLE_RANDOM_SEED
	bool
	prompt "disable random seed services"
	help
	  Disable service files to load/save the random seed during
	  startup/shutdown.
	  This option is for systems with read-only rootfs, where writing
	  the random seed is not possible.
	  Warning: enabling this option may be insecure.

config SYSTEMD_ANALYZE
	bool
	prompt "systemd-analyze"
	help
	  Install the systemd-analyze tool. This feature requires python.

endif