package/swupdate: add progress/usb services

Install progress/usb services for swupdate based on meta-swupdate
configs.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
James Hilliard 2021-08-28 20:46:32 -06:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent daa46718e0
commit 0e94459ad5
5 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1 @@
exec /usr/bin/swupdate-progress -w -r &

View File

@ -0,0 +1,9 @@
[Unit]
Description=swupdate progress service
After=swupdate.service
[Service]
ExecStart=/usr/bin/swupdate-progress -r -w
[Install]
WantedBy=swupdate.service

View File

@ -0,0 +1,8 @@
[Unit]
Description=usb media swupdate service
Requires=swupdate-progress.service
[Service]
ExecStartPre=/bin/mount /dev/%I /mnt
ExecStart=/bin/sh -c "swupdate-client -v /mnt/*.swu"
ExecStopPost=/bin/umount /mnt

View File

@ -248,6 +248,12 @@ define SWUPDATE_INSTALL_INIT_SYSTEMD
$(SWUPDATE_INSTALL_COMMON)
$(INSTALL) -D -m 644 package/swupdate/swupdate.service \
$(TARGET_DIR)/usr/lib/systemd/system/swupdate.service
$(INSTALL) -D -m 644 package/swupdate/swupdate.socket \
$(TARGET_DIR)/usr/lib/systemd/system/swupdate.socket
$(INSTALL) -D -m 644 package/swupdate/swupdate-usb@.service \
$(TARGET_DIR)/usr/lib/systemd/system/swupdate-usb@.service
$(INSTALL) -D -m 644 package/swupdate/swupdate-progress.service \
$(TARGET_DIR)/usr/lib/systemd/system/swupdate-progress.service
$(INSTALL) -D -m 644 package/swupdate/tmpfiles-swupdate.conf \
$(TARGET_DIR)/usr/lib/tmpfiles.d/tmpfiles-swupdate.conf
endef
@ -255,6 +261,8 @@ define SWUPDATE_INSTALL_INIT_SYSV
$(SWUPDATE_INSTALL_COMMON)
$(INSTALL) -D -m 755 package/swupdate/S80swupdate \
$(TARGET_DIR)/etc/init.d/S80swupdate
$(INSTALL) -D -m 644 package/swupdate/90-start-progress \
$(TARGET_DIR)/usr/lib/swupdate/conf.d/90-start-progress
endef
$(eval $(kconfig-package))

View File

@ -0,0 +1,11 @@
[Unit]
Description=SWUpdate socket listener
Documentation=https://github.com/sbabic/swupdate
Documentation=https://sbabic.github.io/swupdate
[Socket]
ListenStream=/tmp/sockinstctrl
ListenStream=/tmp/swupdateprog
[Install]
WantedBy=sockets.target