SUMMARY = "Credentials for shared provisioning" HOMEPAGE = "https://github.com/advancedtelematic/aktualizr" SECTION = "base" LICENSE = "MPL-2.0" LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MPL-2.0;md5=815ca599c9df247a0c7f619bab123dad" inherit allarch DEPENDS = "aktualizr-native zip-native" ALLOW_EMPTY_${PN} = "1" require credentials.inc do_install() { if [ -n "${SOTA_PACKED_CREDENTIALS}" ]; then install -m 0700 -d ${D}${localstatedir}/sota cp "${SOTA_PACKED_CREDENTIALS}" ${D}${localstatedir}/sota/sota_provisioning_credentials.zip # Device should not be able to push data to treehub zip -d ${D}${localstatedir}/sota/sota_provisioning_credentials.zip treehub.json # Device has no use for the API Gateway. Remove if present. See: # https://github.com/advancedtelematic/ota-plus-server/pull/1913/ if unzip -l ${D}${localstatedir}/sota/sota_provisioning_credentials.zip api_gateway.url > /dev/null; then zip -d ${D}${localstatedir}/sota/sota_provisioning_credentials.zip api_gateway.url fi fi } FILES_${PN} = " \ ${localstatedir}/sota/sota_provisioning_credentials.zip \ " # vim:set ts=4 sw=4 sts=4 expandtab: