]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/systemd/Config.in
34c00ad57c92b71ebb21e93a4c49869e9fd170e3
[coffee/buildroot.git] / package / systemd / Config.in
1 config BR2_PACKAGE_SYSTEMD_ARCH_SUPPORTS
2         bool
3         # see src/shared/architecture.h
4         default y if BR2_arm || BR2_armeb || BR2_i386 || BR2_mips || \
5                 BR2_mipsel || BR2_powerpc || BR2_powerpc64 || \
6                 BR2_powerpc64le || BR2_sh4 || BR2_sh4eb || \
7                 BR2_sh4a || BR2_sh4aeb || BR2_sparc || BR2_x86_64 || \
8                 BR2_aarch64 || BR2_m68k
9
10 menuconfig BR2_PACKAGE_SYSTEMD
11         bool "systemd"
12         depends on BR2_INIT_SYSTEMD
13         depends on BR2_USE_WCHAR # util-linux
14         depends on !BR2_STATIC_LIBS # kmod
15         depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
16         depends on BR2_USE_MMU # dbus
17         select BR2_PACKAGE_HAS_UDEV
18         select BR2_PACKAGE_DBUS # runtime dependency only
19         select BR2_PACKAGE_LIBCAP
20         select BR2_PACKAGE_UTIL_LINUX
21         select BR2_PACKAGE_UTIL_LINUX_LIBBLKID
22         select BR2_PACKAGE_UTIL_LINUX_LIBMOUNT
23         select BR2_PACKAGE_UTIL_LINUX_BINARIES
24         select BR2_PACKAGE_UTIL_LINUX_MOUNT
25         select BR2_PACKAGE_UTIL_LINUX_NOLOGIN
26         select BR2_PACKAGE_KMOD
27         select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # kmod-tools
28         select BR2_PACKAGE_KMOD_TOOLS
29         help
30           systemd is a system and service manager for Linux, compatible with
31           SysV and LSB init scripts. systemd provides aggressive parallelization
32           capabilities, uses socket and D-Bus activation for starting services,
33           offers on-demand starting of daemons, keeps track of processes using
34           Linux cgroups, supports snapshotting and restoring of the system
35           state, maintains mount and automount points and implements an
36           elaborate transactional dependency-based service control logic.
37           It can work as a drop-in replacement for sysvinit.
38
39           Systemd requires a Linux kernel >= 3.0 with the following options
40           enabled:
41
42           - CONFIG_CGROUPS
43           - CONFIG_INOTIFY_USER
44           - CONFIG_FHANDLE
45           - CONFIG_AUTOFS4_FS
46           - CONFIG_TMPFS_POSIX_ACL
47           - CONFIG_TMPFS_XATTR
48
49           These options will be automatically enabled by Buildroot if
50           it is responsible for building the kernel. Otherwise, if you
51           are building your kernel outside of Buildroot, make sure
52           these options are enabled.
53
54           Systemd also provides udev, the userspace device daemon.
55
56           The selection of other packages will enable some features:
57
58           - acl package will add support for multi-seat.
59           - xz and/or l4 packages will add compression support in
60             journal and coredump.
61           - libcurl package will add support for systemd-journal-upload.
62           - libgcrypt package will add support for journal sealing and
63             DNSSEC verification in resolved.
64
65           http://freedesktop.org/wiki/Software/systemd
66
67 if BR2_PACKAGE_SYSTEMD
68
69 config BR2_PACKAGE_PROVIDES_UDEV
70         default "systemd"
71
72 config BR2_PACKAGE_SYSTEMD_KDBUS
73         bool "enable kdbus support"
74         help
75           Enable kdbus support for Systemd.
76
77 config BR2_PACKAGE_SYSTEMD_JOURNAL_GATEWAY
78         bool "HTTP server for journal events"
79         select BR2_PACKAGE_LIBMICROHTTPD
80         help
81           systemd-journal-gatewayd serves journal events over the
82           network. Clients must connect using HTTP. The server
83           listens on port 19531 by default.
84
85           http://www.freedesktop.org/software/systemd/man/systemd-journal-gatewayd.service.html
86
87 config BR2_PACKAGE_SYSTEMD_HWDB
88         bool "enable hwdb installation"
89         default y
90         help
91           Enables hardware database installation to /usr/lib/udev/hwdb.d
92
93           Disabling this option improves first boot time (or every boot
94           time in case of initramfs images) and saves several MB space.
95
96           https://www.freedesktop.org/software/systemd/man/hwdb.html
97
98 config BR2_PACKAGE_SYSTEMD_BINFMT
99         bool "enable binfmt tool"
100         help
101           systemd-binfmt is an early boot service that registers
102           additional binary formats for executables in the kernel.
103
104           http://www.freedesktop.org/software/systemd/man/systemd-binfmt.service.html
105
106 config BR2_PACKAGE_SYSTEMD_VCONSOLE
107         bool "enable vconsole tool"
108         help
109           systemd-vconsole-setup is an early boot service that
110           configures the virtual console font and console keymap.
111
112           http://www.freedesktop.org/software/systemd/man/systemd-vconsole-setup.service.html
113
114 config BR2_PACKAGE_SYSTEMD_BOOTCHART
115         bool "enable bootchart tool"
116         help
117           systemd-bootchart is a tool, usually run at system startup,
118           that collects the CPU load, disk load, memory usage, as well
119           as per-process information from a running system. Collected
120           results are output as an SVG graph.
121
122           http://www.freedesktop.org/software/systemd/man/systemd-bootchart.html
123
124 config BR2_PACKAGE_SYSTEMD_QUOTACHECK
125         bool "enable quotacheck tools"
126         help
127           systemd-quotacheck is a service responsible for file system
128           quota checks. It is run once at boot after all necessary
129           file systems are mounted. It is pulled in only if at least
130           one file system has quotas enabled.
131
132           http://www.freedesktop.org/software/systemd/man/systemd-quotacheck.service.html
133
134 config BR2_PACKAGE_SYSTEMD_TMPFILES
135         bool "enable tmpfiles support"
136         default y
137         help
138           systemd-tmpfiles creates, deletes, and cleans up volatile
139           and temporary files and directories, based on the
140           configuration file format and location specified in
141           tmpfiles.d(5).
142
143           http://www.freedesktop.org/software/systemd/man/systemd-tmpfiles.html
144
145 config BR2_PACKAGE_SYSTEMD_SYSUSERS
146         bool "enable sysusers support"
147         help
148           systemd-sysusers creates system users and groups, based on
149           the file format and location specified in sysusers.d(5).
150
151           http://www.freedesktop.org/software/systemd/man/systemd-sysusers.html
152
153 config BR2_PACKAGE_SYSTEMD_FIRSTBOOT
154         bool "enable firstboot support"
155         default y
156         help
157           systemd-firstboot initializes the most basic system settings
158           interactively on the first boot.
159
160           http://www.freedesktop.org/software/systemd/man/systemd-firstboot.html
161
162 config BR2_PACKAGE_SYSTEMD_RANDOMSEED
163         bool "enable random-seed support"
164         help
165           systemd-random-seed is a service that restores the random
166           seed of the system at early boot and saves it at
167           shutdown. Saving/restoring the random seed across boots
168           increases the amount of available entropy early at boot.
169
170           http://www.freedesktop.org/software/systemd/man/systemd-random-seed.service.html
171
172 config BR2_PACKAGE_SYSTEMD_BACKLIGHT
173         bool "enable backlight support"
174         help
175           systemd-backlight is a service that restores the display
176           backlight brightness at early boot and saves it at shutdown.
177
178           http://www.freedesktop.org/software/systemd/man/systemd-backlight@.service.html
179
180 config BR2_PACKAGE_SYSTEMD_RFKILL
181         bool "enable rfkill tools"
182         help
183           systemd-rfkill is a service that restores the RF kill switch
184           state at early boot and saves it at shutdown.
185
186           http://www.freedesktop.org/software/systemd/man/systemd-rfkill@.service.html
187
188 config BR2_PACKAGE_SYSTEMD_LOGIND
189         bool "enable login daemon"
190         help
191           systemd-logind is a system service that manages user logins.
192
193           http://www.freedesktop.org/software/systemd/man/systemd-logind.service.html
194
195 config BR2_PACKAGE_SYSTEMD_MACHINED
196         bool "enable machine daemon"
197         help
198           systemd-machined is a system service that keeps track of
199           virtual machines and containers, and processes belonging to
200           them.
201
202           http://www.freedesktop.org/software/systemd/man/systemd-machined.service.html
203
204 config BR2_PACKAGE_SYSTEMD_IMPORTD
205         bool "enable import daemon"
206         select BR2_PACKAGE_LIBCURL
207         select BR2_PACKAGE_LIBGCRYPT
208         select BR2_PACKAGE_BZIP2
209         select BR2_PACKAGE_LZ4
210         select BR2_PACKAGE_XZ
211         select BR2_PACKAGE_ZLIB
212         help
213           systemd-importd is a system service that manages virtual
214           machine and container images for systemd-machined and
215           machinectl.
216
217           http://www.freedesktop.org/software/systemd/man/machinectl.html#Image%20Transfer%20Commands
218
219 config BR2_PACKAGE_SYSTEMD_HOSTNAMED
220         bool "enable hostname daemon"
221         default y
222         help
223           systemd-hostnamed is a system service that may be used as a
224           mechanism to change the system's hostname.
225
226           http://www.freedesktop.org/software/systemd/man/systemd-hostnamed.service.html
227
228 config BR2_PACKAGE_SYSTEMD_MYHOSTNAME
229         bool "enable myhostname NSS plugin"
230         default y
231         help
232           nss-myhostname is a plug-in module for the GNU Name Service
233           Switch (NSS) functionality of the GNU C Library (glibc),
234           primarily providing hostname resolution for the locally
235           configured system hostname as returned by gethostname(2).
236
237           http://www.freedesktop.org/software/systemd/man/nss-myhostname.html
238
239 config BR2_PACKAGE_SYSTEMD_TIMEDATED
240         bool "enable timedate daemon"
241         default y
242         help
243           systemd-timedated is a system service that may be used as a
244           mechanism to change the system clock and timezone, as well
245           as to enable/disable NTP time synchronization.
246
247           http://www.freedesktop.org/software/systemd/man/systemd-timedated.service.html
248
249 config BR2_PACKAGE_SYSTEMD_LOCALED
250         bool "enable locale daemon"
251         help
252           systemd-localed is a system service that may be used as
253           mechanism to change the system locale settings, as well as
254           the console key mapping and default X11 key mapping.
255
256           http://www.freedesktop.org/software/systemd/man/systemd-localed.service.html
257
258 config BR2_PACKAGE_SYSTEMD_COREDUMP
259         bool "enable coredump hook"
260         help
261           systemd-coredump can be used as a helper binary by the
262           kernel when a user space program receives a fatal signal and
263           dumps core.
264
265           http://www.freedesktop.org/software/systemd/man/systemd-coredump.html
266
267 config BR2_PACKAGE_SYSTEMD_POLKIT
268         bool "enable polkit support"
269         select BR2_PACKAGE_POLKIT
270         help
271           If enabled, systemd is built with polkit support and policy
272           files for its services are generated and installed. It is
273           useful for allowing unprivileged processes to speak to
274           systemd's many privileged processes.
275
276           http://wiki.freedesktop.org/www/Software/polkit/
277
278 config BR2_PACKAGE_SYSTEMD_NETWORKD
279         bool "enable network manager"
280         default y
281         help
282           systemd-networkd is a system service that manages networks.
283           It detects and configures network devices as they appear, as well as
284           creating virtual network devices.
285
286           This simple network configuration solution is an alternative to
287           dhcpcd or ISC dhcp.
288
289           http://www.freedesktop.org/software/systemd/man/systemd-networkd.html
290
291 config BR2_PACKAGE_SYSTEMD_RESOLVED
292         bool "enable resolve daemon"
293         default y
294         help
295           systemd-resolved is a system service that provides network
296           name resolution to local applications. It implements a
297           caching and validating DNS/DNSSEC stub resolver, as well as
298           an LLMNR resolver and responder.
299
300           http://www.freedesktop.org/software/systemd/man/systemd-resolved.html
301
302 config BR2_PACKAGE_SYSTEMD_TIMESYNCD
303         bool "enable timesync daemon"
304         default y
305         help
306           systemd-timesyncd is a service that may be used to synchronize the
307           local system clock with a Network Time Protocol server.
308
309           This simple NTP solution is an alternative to sntp/ntpd from the ntp
310           package.
311
312           http://www.freedesktop.org/software/systemd/man/systemd-timesyncd.html
313
314 config BR2_PACKAGE_SYSTEMD_COMPAT
315         bool "enable compatibility libraries"
316         help
317           Since systemd 209, the following libraries have been merged into
318           libsystemd.so:
319
320           - libsystemd-daemon
321           - libsystemd-id128
322           - libsystemd-journal
323           - libsystemd-login
324
325           This option enables the installation of compatibility *.pc files.
326
327 config BR2_PACKAGE_SYSTEMD_SMACK_SUPPORT
328         bool "enable SMACK support"
329         select BR2_PACKAGE_ATTR
330         select BR2_PACKAGE_SMACK
331         help
332           Enable support for SMACK, the Simple Mandatory Access Control
333           Kernel, a minimal approach to Access Control implemented as a kernel
334           LSM.
335
336           This feature requires a kernel >= 3.8.
337
338           When this feature is enabled, Systemd mounts smackfs and manages
339           security labels for sockets.
340
341 config BR2_PACKAGE_SYSTEMD_HIBERNATE
342         bool "enable hibernation support"
343         help
344           When this features is enabled, additional tools and services
345           are built to support suspending and resuming the system.
346
347           http://www.freedesktop.org/software/systemd/man/systemd-sleep.html
348
349 endif