]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/systemd/Config.in
package/systemd: add --enable/disable-libcurl
[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 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.
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_NETWORKD
88         bool "enable network manager"
89         help
90           systemd-networkd is a system service that manages networks.
91           It detects and configures network devices as they appear, as well as
92           creating virtual network devices.
93
94           This simple network configuration solution is an alternative to
95           dhcpcd or ISC dhcp.
96
97           http://www.freedesktop.org/software/systemd/man/systemd-networkd.html
98
99 config BR2_PACKAGE_SYSTEMD_TIMESYNCD
100         bool "enable SNTP client"
101         depends on BR2_PACKAGE_SYSTEMD_NETWORKD
102         help
103           systemd-timesyncd is a service that may be used to synchronize the
104           local system clock with a Network Time Protocol Server.
105
106           This simple NTP solution is an alternative to sntp/ntpd from the ntp
107           package.
108
109           http://www.freedesktop.org/software/systemd/man/systemd-timesyncd.html
110
111 config BR2_PACKAGE_SYSTEMD_COMPAT
112         bool "enable compatibility libraries"
113         help
114           Since systemd 209, the following libraries have been merged into
115           libsystemd.so:
116
117           - libsystemd-daemon
118           - libsystemd-id128
119           - libsystemd-journal
120           - libsystemd-login
121
122           This option enables the installation of compatibility *.pc files.
123
124 config BR2_PACKAGE_SYSTEMD_SMACK_SUPPORT
125         bool "enable SMACK support"
126         select BR2_PACKAGE_ATTR
127         select BR2_PACKAGE_SMACK
128         help
129           Enable support for SMACK, the Simple Mandatory Access Control
130           Kernel, a minimal approach to Access Control implemented as a kernel
131           LSM.
132
133           This feature requires a kernel >= 3.8.
134
135           When this feature is enabled, Systemd mounts smackfs and manages
136           security labels for sockets.
137
138 endif