Config.in 932 B

1234567891011121314151617181920
  1. config BR2_PACKAGE_SYSTEMD
  2. bool "systemd"
  3. depends on BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
  4. depends on BR2_INET_IPV6
  5. select BR2_PACKAGE_DBUS
  6. select BR2_PACKAGE_LIBCAP
  7. help
  8. systemd is a system and service manager for Linux, compatible with
  9. SysV and LSB init scripts. systemd provides aggressive parallelization
  10. capabilities, uses socket and D-Bus activation for starting services,
  11. offers on-demand starting of daemons, keeps track of processes using
  12. Linux cgroups, supports snapshotting and restoring of the system
  13. state, maintains mount and automount points and implements an
  14. elaborate transactional dependency-based service control logic.
  15. It can work as a drop-in replacement for sysvinit.
  16. http://freedesktop.org/wiki/Software/systemd
  17. comment "systemd not available (depends on /dev management with udev and ipv6 support)"
  18. depends on !(BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV && BR2_INET_IPV6)