open-plc-utils: new package
[buildroot-gz.git] / package / systemd / Config.in
blobd00ac9d82fa80e5e4cf7e4822dc91289d563d1c3
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
10 config BR2_PACKAGE_SYSTEMD
11         bool "systemd"
12         depends on BR2_INIT_SYSTEMD
13         depends on BR2_USE_WCHAR # util-linux
14         depends on BR2_INET_IPV6
15         depends on !BR2_STATIC_LIBS # kmod
16         depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
17         depends on BR2_USE_MMU # dbus
18         select BR2_PACKAGE_HAS_UDEV
19         select BR2_PACKAGE_DBUS # runtime dependency only
20         select BR2_PACKAGE_LIBCAP
21         select BR2_PACKAGE_UTIL_LINUX
22         select BR2_PACKAGE_UTIL_LINUX_LIBBLKID
23         select BR2_PACKAGE_UTIL_LINUX_LIBMOUNT
24         select BR2_PACKAGE_KMOD
25         select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # kmod-tools
26         select BR2_PACKAGE_KMOD_TOOLS
27         help
28           systemd is a system and service manager for Linux, compatible with
29           SysV and LSB init scripts. systemd provides aggressive parallelization
30           capabilities, uses socket and D-Bus activation for starting services,
31           offers on-demand starting of daemons, keeps track of processes using
32           Linux cgroups, supports snapshotting and restoring of the system
33           state, maintains mount and automount points and implements an
34           elaborate transactional dependency-based service control logic.
35           It can work as a drop-in replacement for sysvinit.
37           Systemd requires a Linux kernel >= 3.0 with the following options
38           enabled:
40           - CONFIG_CGROUPS
41           - CONFIG_INOTIFY_USER
42           - CONFIG_FHANDLE
43           - CONFIG_AUTOFS4_FS
44           - CONFIG_TMPFS_POSIX_ACL
45           - CONFIG_TMPFS_XATTR
47           These options will be automatically enabled by Buildroot if
48           it is responsible for building the kernel. Otherwise, if you
49           are building your kernel outside of Buildroot, make sure
50           these options are enabled.
52           Systemd also provides udev, the userspace device daemon.
54           The selection of other packages will enable some features:
56           - libglib2 package will add support for gudev.
57           - acl package will add support for multi-seat.
59           http://freedesktop.org/wiki/Software/systemd
61 if BR2_PACKAGE_SYSTEMD
63 config BR2_PACKAGE_PROVIDES_UDEV
64         default "systemd"
66 config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
67         bool "enable all extras"
68         select BR2_PACKAGE_XZ
69         select BR2_PACKAGE_LIBGCRYPT
70         help
71           Enable extra features for Systemd: journal compression and
72           signing.
74 config BR2_PACKAGE_SYSTEMD_JOURNAL_GATEWAY
75         bool "HTTP server for journal events"
76         select BR2_PACKAGE_LIBMICROHTTPD
77         help
78           systemd-journal-gatewayd serves journal events over the
79           network. Clients must connect using HTTP. The server
80           listens on port 19531 by default.
82           http://www.freedesktop.org/software/systemd/man/systemd-journal-gatewayd.service.html
84 config BR2_PACKAGE_SYSTEMD_NETWORKD
85         bool "enable network manager"
86         help
87           systemd-networkd is a system service that manages networks.
88           It detects and configures network devices as they appear, as well as
89           creating virtual network devices.
91           This simple network configuration solution is an alternative to
92           dhcpcd or ISC dhcp.
94           http://www.freedesktop.org/software/systemd/man/systemd-networkd.html
96 config BR2_PACKAGE_SYSTEMD_TIMESYNCD
97         bool "enable SNTP client"
98         depends on BR2_PACKAGE_SYSTEMD_NETWORKD
99         help
100           systemd-timesyncd is a service that may be used to synchronize the
101           local system clock with a Network Time Protocol Server.
103           This simple NTP solution is an alternative to sntp/ntpd from the ntp
104           package.
106           http://www.freedesktop.org/software/systemd/man/systemd-timesyncd.html
108 config BR2_PACKAGE_SYSTEMD_COMPAT
109         bool "enable compatibility libraries"
110         help
111           Since systemd 209, the following libraries have been merged into
112           libsystemd.so:
114           - libsystemd-daemon
115           - libsystemd-id128
116           - libsystemd-journal
117           - libsystemd-login
119           This option enables the installation of compatibility *.pc files.
121 config BR2_PACKAGE_SYSTEMD_SMACK_SUPPORT
122         bool "enable SMACK support"
123         select BR2_PACKAGE_ATTR
124         select BR2_PACKAGE_SMACK
125         help
126           Enable support for SMACK, the Simple Mandatory Access Control
127           Kernel, a minimal approach to Access Control implemented as a kernel
128           LSM.
130           This feature requires a kernel >= 3.8.
132           When this feature is enabled, Systemd mounts smackfs and manages
133           security labels for sockets.
135 endif