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:
parent
5eb436f152
commit
80626aa749
|
|
@ -68,7 +68,7 @@ python () {
|
||||||
# Provide sane default values for SWUPDATE class in case Trustfence is enabled
|
# Provide sane default values for SWUPDATE class in case Trustfence is enabled
|
||||||
if (d.getVar("TRUSTFENCE_SIGN", True) == "1"):
|
if (d.getVar("TRUSTFENCE_SIGN", True) == "1"):
|
||||||
# Enable package signing.
|
# Enable package signing.
|
||||||
d.setVar("SWUPDATE_SIGNING", "1")
|
d.setVar("SWUPDATE_SIGNING", "RSA")
|
||||||
|
|
||||||
# Retrieve the keys path to use.
|
# Retrieve the keys path to use.
|
||||||
keys_path = d.getVar("TRUSTFENCE_SIGN_KEYS_PATH", True)
|
keys_path = d.getVar("TRUSTFENCE_SIGN_KEYS_PATH", True)
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (C) 2016, 2017 Digi International Inc.
|
# Copyright (C) 2016-2018 Digi International Inc.
|
||||||
|
|
||||||
FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:"
|
FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:"
|
||||||
|
|
||||||
|
|
@ -14,5 +14,5 @@ do_configure_append() {
|
||||||
do_install_append() {
|
do_install_append() {
|
||||||
# Copy the 'progress' binary.
|
# Copy the 'progress' binary.
|
||||||
install -d ${D}${bindir}/
|
install -d ${D}${bindir}/
|
||||||
install -m 0755 progress ${D}${bindir}/
|
install -m 0755 tools/progress_unstripped ${D}${bindir}/progress
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue