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