blob: d526cd26aa3f5da4f11c3e8354480abb4c58bb08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
SUMMARY = "Aktualizr configuration with HSM support"
DESCRIPTION = "Configuration for HSM provisioning with Aktualizr, the SOTA Client application written in C++"
HOMEPAGE = "https://github.com/advancedtelematic/aktualizr"
SECTION = "base"
LICENSE = "MPL-2.0"
LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=9741c346eef56131163e13b9db1241b3"
DEPENDS = "aktualizr-native"
RDEPENDS_${PN} = "aktualizr"
SRC_URI = " \
file://LICENSE \
"
PV = "1.0"
PR = "6"
require environment.inc
require credentials.inc
do_install() {
install -m 0700 -d ${D}${libdir}/sota/conf.d
install -m 0644 ${STAGING_DIR_NATIVE}${libdir}/sota/sota_hsm_prov.toml \
${D}${libdir}/sota/conf.d/20-sota_hsm_prov.toml
if [ -n "${SOTA_PACKED_CREDENTIALS}" ]; then
aktualizr_implicit_writer -c ${SOTA_PACKED_CREDENTIALS} --no-root-ca \
-i ${STAGING_DIR_NATIVE}${libdir}/sota/sota_hsm_prov.toml \
-o ${D}${libdir}/sota/conf.d/30-implicit_server.toml -p ${D}
fi
}
FILES_${PN} = " \
${libdir}/sota/conf.d \
${libdir}/sota/conf.d/20-sota_hsm_prov.toml \
${libdir}/sota/conf.d/30-implicit_server.toml \
"
# vim:set ts=4 sw=4 sts=4 expandtab:
|