mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-01 23:47:42 +00:00
package/systemd: Add optional support for resolved
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
f0b78cf145
commit
db04c468d3
@ -287,6 +287,17 @@ config BR2_PACKAGE_SYSTEMD_NETWORKD
|
|||||||
|
|
||||||
http://www.freedesktop.org/software/systemd/man/systemd-networkd.html
|
http://www.freedesktop.org/software/systemd/man/systemd-networkd.html
|
||||||
|
|
||||||
|
config BR2_PACKAGE_SYSTEMD_RESOLVED
|
||||||
|
bool "enable resolve daemon"
|
||||||
|
default y
|
||||||
|
help
|
||||||
|
systemd-resolved is a system service that provides network
|
||||||
|
name resolution to local applications. It implements a
|
||||||
|
caching and validating DNS/DNSSEC stub resolver, as well as
|
||||||
|
an LLMNR resolver and responder.
|
||||||
|
|
||||||
|
http://www.freedesktop.org/software/systemd/man/systemd-resolved.html
|
||||||
|
|
||||||
config BR2_PACKAGE_SYSTEMD_TIMESYNCD
|
config BR2_PACKAGE_SYSTEMD_TIMESYNCD
|
||||||
bool "enable SNTP client"
|
bool "enable SNTP client"
|
||||||
help
|
help
|
||||||
|
@ -296,6 +296,12 @@ define SYSTEMD_INSTALL_SERVICE_NETWORK
|
|||||||
endef
|
endef
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_SYSTEMD_RESOLVED),y)
|
||||||
|
SYSTEMD_CONF_OPTS += --enable-resolved
|
||||||
|
else
|
||||||
|
SYSTEMD_CONF_OPTS += --disable-resolved
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_SYSTEMD_TIMESYNCD),y)
|
ifeq ($(BR2_PACKAGE_SYSTEMD_TIMESYNCD),y)
|
||||||
SYSTEMD_CONF_OPTS += --enable-timesyncd
|
SYSTEMD_CONF_OPTS += --enable-timesyncd
|
||||||
define SYSTEMD_INSTALL_SERVICE_TIMESYNC
|
define SYSTEMD_INSTALL_SERVICE_TIMESYNC
|
||||||
|
Loading…
x
Reference in New Issue
Block a user