package/ssdp-responder: add /var/lib/misc for systemd builds

Similar to dnsmasq, ssdp-responder saves state data across reboots in
the /var/lib/misc/ directory.  In the case of ssdp-responder it is the
(per-device unique) UUID that is generated on first boot.

Workaround only needed for systemd builds, the sysv skeleton already has
the /var/lib/misc/ directory.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Joachim Wiberg 2023-06-04 13:06:47 +02:00 committed by Thomas Petazzoni
parent 2737af9cf9
commit 5a32daed29

View File

@ -25,4 +25,8 @@ define SSDP_RESPONDER_INSTALL_INIT_SYSV
$(TARGET_DIR)/etc/init.d/S50ssdpd
endef
define SSDP_RESPONDER_INSTALL_INIT_SYSTEMD
mkdir -p $(TARGET_DIR)/var/lib/misc/
endef
$(eval $(autotools-package))