Files
forgefirm/meta-forgefirm/recipes-forgefirm/forgefirm-keys/forgefirm-keys.bb
T
ScottW514 d1bbecb9ee forgefirm-keys: verification trust anchors; forgectrl update manager
/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.
2026-08-08 14:02:15 -04:00

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"