package/network-manager: add optional systemd support

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
James Hilliard 2021-12-05 04:22:11 -07:00 committed by Thomas Petazzoni
parent a15cb73b49
commit 9ae792cc01

View file

@ -113,6 +113,21 @@ else
NETWORK_MANAGER_CONF_OPTS += --without-ofono
endif
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
NETWORK_MANAGER_DEPENDENCIES += systemd
NETWORK_MANAGER_CONF_OPTS += \
--with-systemd-journal \
--with-config-logging-backend-default=journal \
--with-session-tracking=systemd \
--with-suspend-resume=systemd
else
NETWORK_MANAGER_CONF_OPTS += \
--without-systemd-journal \
--with-config-logging-backend-default=syslog \
--without-session-tracking \
--with-suspend-resume=upower
endif
ifeq ($(BR2_PACKAGE_POLKIT),y)
NETWORK_MANAGER_DEPENDENCIES += polkit
NETWORK_MANAGER_CONF_OPTS += --enable-polkit