diff options
author | Julien Corjon <corjon.j@ecagroup.com> | 2018-04-16 15:20:35 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-16 16:21:06 +0200 |
commit | 2d9e9d04d7e810e4c97f14dd84acfbdb43b9b3ea (patch) | |
tree | b152ad5b3d3f30d06de2f4310f8f877510063106 | |
parent | b67a74f2b8562a1eb9c056513b5e7232fa252f4e (diff) | |
download | buildroot-2d9e9d04d7e810e4c97f14dd84acfbdb43b9b3ea.tar.gz buildroot-2d9e9d04d7e810e4c97f14dd84acfbdb43b9b3ea.zip |
package/swupdate: default website have a new API
2018.03 introduce a new website with Websocket asynchronous
communication[1]
[1] https://github.com/sbabic/swupdate/blob/master/doc/source/mongoose.rst
Signed-off-by: Julien Corjon <corjon.j@ecagroup.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/swupdate/swupdate.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/swupdate/swupdate.mk b/package/swupdate/swupdate.mk index 8649931eb7..abf46c9256 100644 --- a/package/swupdate/swupdate.mk +++ b/package/swupdate/swupdate.mk @@ -125,7 +125,7 @@ define SWUPDATE_INSTALL_TARGET_CMDS $(INSTALL) -D -m 0755 $(@D)/swupdate $(TARGET_DIR)/usr/bin/swupdate $(if $(BR2_PACKAGE_SWUPDATE_INSTALL_WEBSITE), \ mkdir -p $(TARGET_DIR)/var/www/swupdate; \ - cp -dpf $(@D)/www/* $(TARGET_DIR)/var/www/swupdate) + cp -dpfr $(@D)/examples/www/v2/* $(TARGET_DIR)/var/www/swupdate) endef # Checks to give errors that the user can understand |