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

menuconfig SYSTEMD
	tristate
	select ROOTFS_RUN
	select LIBC_PTHREAD
	select LIBC_RT
	select DBUS
	select LIBCAP
	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.

endif