blob: 52ebe1c016a0d4bef6d947325871fd9cb6bb79af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
SUMMARY = "Aktualizr example interface"
DESCRIPTION = "Aktualizr example interface for legacy secondaries"
HOMEPAGE = "https://github.com/advancedtelematic/aktualizr"
SECTION = "base"
LICENSE = "MPL-2.0"
LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=9741c346eef56131163e13b9db1241b3"
SRC_URI = " \
file://LICENSE \
"
do_install_append () {
install -m 0700 -d ${D}${libdir}/sota/conf.d
echo "[uptane]\nlegacy_interface = \"/usr/bin/example-interface\"\n" > ${D}${libdir}/sota/conf.d/30-example-interface.toml
}
FILES_${PN} = " \
${libdir}/sota/conf.d/30-example-interface.toml \
"
# vim:set ts=4 sw=4 sts=4 expandtab:
|