mirror of
https://github.com/openglow-org/forgefirm.git
synced 2026-09-27 08:41:13 -07:00
/etc/forgefirm/keys ships the ForgeFIRM release-signing public key and the Glowforge factory keyring (public keys only) - the update manager verifies release downloads/uploads against the former and factory archives against the latter. forgectrl SRCREV bumped to the update-manager commit; runtime deps on ffboot, fwup, the keyring, and curl made explicit.
24 lines
805 B
BlitzBasic
24 lines
805 B
BlitzBasic
SUMMARY = "Firmware verification public keys"
|
|
DESCRIPTION = "Trust anchors for firmware archive verification: the \
|
|
ForgeFIRM release-signing public key (verifies release downloads and \
|
|
uploads) and the Glowforge factory keyring (verifies factory .fw \
|
|
archives for cloud restore). Public keys only."
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
|
|
|
|
SRC_URI = " \
|
|
file://forgefirm-release.pub \
|
|
file://gf \
|
|
"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
do_install() {
|
|
install -d ${D}${sysconfdir}/forgefirm/keys/gf
|
|
install -m 0644 ${WORKDIR}/forgefirm-release.pub \
|
|
${D}${sysconfdir}/forgefirm/keys/forgefirm-release.pub
|
|
install -m 0644 ${WORKDIR}/gf/*.pub ${D}${sysconfdir}/forgefirm/keys/gf/
|
|
}
|
|
|
|
FILES:${PN} = "${sysconfdir}/forgefirm/keys"
|