package/upmpcli: bump to version 0.13.1
[buildroot-gz.git] / package / systemd / Config.in
blobf7fc3bbfde7db6a2a8269865de0540854031c86d
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_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.
39           Systemd requires a Linux kernel >= 3.0 with the following options
40           enabled:
42           - CONFIG_CGROUPS
43           - CONFIG_INOTIFY_USER
44           - CONFIG_FHANDLE
45           - CONFIG_AUTOFS4_FS
46           - CONFIG_TMPFS_POSIX_ACL
47           - CONFIG_TMPFS_XATTR
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.
54           Systemd also provides udev, the userspace device daemon.
56           The selection of other packages will enable some features:
58           - acl package will add support for multi-seat.
60           http://freedesktop.org/wiki/Software/systemd
62 if BR2_PACKAGE_SYSTEMD
64 config BR2_PACKAGE_PROVIDES_UDEV
65         default "systemd"
67 config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
68         bool "enable all extras"
69         select BR2_PACKAGE_XZ
70         select BR2_PACKAGE_LIBGCRYPT
71         help
72           Enable extra features for Systemd: journal compression and
73           signing.
75 config BR2_PACKAGE_SYSTEMD_KDBUS
76         bool "enable kdbus support"
77         help
78           Enable kdbus support for Systemd.
80 config BR2_PACKAGE_SYSTEMD_JOURNAL_GATEWAY
81         bool "HTTP server for journal events"
82         select BR2_PACKAGE_LIBMICROHTTPD
83         help
84           systemd-journal-gatewayd serves journal events over the
85           network. Clients must connect using HTTP. The server
86           listens on port 19531 by default.
88           http://www.freedesktop.org/software/systemd/man/systemd-journal-gatewayd.service.html
90 config BR2_PACKAGE_SYSTEMD_NETWORKD
91         bool "enable network manager"
92         help
93           systemd-networkd is a system service that manages networks.
94           It detects and configures network devices as they appear, as well as
95           creating virtual network devices.
97           This simple network configuration solution is an alternative to
98           dhcpcd or ISC dhcp.
100           http://www.freedesktop.org/software/systemd/man/systemd-networkd.html
102 config BR2_PACKAGE_SYSTEMD_TIMESYNCD
103         bool "enable SNTP client"
104         depends on BR2_PACKAGE_SYSTEMD_NETWORKD
105         help
106           systemd-timesyncd is a service that may be used to synchronize the
107           local system clock with a Network Time Protocol Server.
109           This simple NTP solution is an alternative to sntp/ntpd from the ntp
110           package.
112           http://www.freedesktop.org/software/systemd/man/systemd-timesyncd.html
114 config BR2_PACKAGE_SYSTEMD_COMPAT
115         bool "enable compatibility libraries"
116         help
117           Since systemd 209, the following libraries have been merged into
118           libsystemd.so:
120           - libsystemd-daemon
121           - libsystemd-id128
122           - libsystemd-journal
123           - libsystemd-login
125           This option enables the installation of compatibility *.pc files.
127 config BR2_PACKAGE_SYSTEMD_SMACK_SUPPORT
128         bool "enable SMACK support"
129         select BR2_PACKAGE_ATTR
130         select BR2_PACKAGE_SMACK
131         help
132           Enable support for SMACK, the Simple Mandatory Access Control
133           Kernel, a minimal approach to Access Control implemented as a kernel
134           LSM.
136           This feature requires a kernel >= 3.8.
138           When this feature is enabled, Systemd mounts smackfs and manages
139           security labels for sockets.
141 endif