swupdate: update to 2017.07

Rename recipe and fix the path of the progress binary. Also on the
rocko branch of meta-swupdate several signing mechanisms are
supported, and the value is used as a string to determine which one
to use.

Signed-off-by: Jose Diaz de Grenu <Jose.DiazdeGrenu@digi.com>
This commit is contained in:
Jose Diaz de Grenu 2018-01-23 11:51:47 +01:00
parent 5eb436f152
commit 80626aa749
2 changed files with 3 additions and 3 deletions

View File

@ -68,7 +68,7 @@ python () {
# Provide sane default values for SWUPDATE class in case Trustfence is enabled
if (d.getVar("TRUSTFENCE_SIGN", True) == "1"):
# Enable package signing.
d.setVar("SWUPDATE_SIGNING", "1")
d.setVar("SWUPDATE_SIGNING", "RSA")
# Retrieve the keys path to use.
keys_path = d.getVar("TRUSTFENCE_SIGN_KEYS_PATH", True)

View File

@ -1,4 +1,4 @@
# Copyright (C) 2016, 2017 Digi International Inc.
# Copyright (C) 2016-2018 Digi International Inc.
FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:"
@ -14,5 +14,5 @@ do_configure_append() {
do_install_append() {
# Copy the 'progress' binary.
install -d ${D}${bindir}/
install -m 0755 progress ${D}${bindir}/
install -m 0755 tools/progress_unstripped ${D}${bindir}/progress
}