summaryrefslogtreecommitdiffstats
path: root/recipes-sota/aktualizr/aktualizr.inc
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-sota/aktualizr/aktualizr.inc')
-rw-r--r--recipes-sota/aktualizr/aktualizr.inc161
1 files changed, 161 insertions, 0 deletions
diff --git a/recipes-sota/aktualizr/aktualizr.inc b/recipes-sota/aktualizr/aktualizr.inc
new file mode 100644
index 0000000..f88c37b
--- /dev/null
+++ b/recipes-sota/aktualizr/aktualizr.inc
@@ -0,0 +1,161 @@
1SUMMARY = "Aktualizr SOTA Client"
2DESCRIPTION = "SOTA Client application written in C++"
3HOMEPAGE = "https://github.com/advancedtelematic/aktualizr"
4SECTION = "base"
5LICENSE = "MPL-2.0"
6LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=9741c346eef56131163e13b9db1241b3"
7
8DEPENDS = "boost curl openssl libarchive libsodium sqlite3 asn1c-native"
9DEPENDS_append = "${@bb.utils.contains('PTEST_ENABLED', '1', ' coreutils-native net-tools-native ostree-native aktualizr-native ', '', d)}"
10RDEPENDS_${PN}_class-target = "aktualizr-configs lshw"
11RDEPENDS_${PN}-host-tools = "aktualizr aktualizr-cert-provider ${@bb.utils.contains('PACKAGECONFIG', 'sota-tools', 'garage-deploy garage-push', '', d)}"
12
13RDEPENDS_${PN}-ptest += "bash cmake curl net-tools python3-core python3-misc python3-modules openssl-bin sqlite3 valgrind"
14
15
16SRC_URI = " \
17 gitsm://github.com/advancedtelematic/aktualizr;branch=${BRANCH} \
18 file://run-ptest \
19 file://aktualizr.service \
20 file://aktualizr-secondary.service \
21 file://aktualizr-serialcan.service \
22 file://10-resource-control.conf \
23 ${@ d.expand("https://ats-tuf-cli-releases.s3-eu-central-1.amazonaws.com/cli-${GARAGE_SIGN_PV}.tgz;unpack=0") if d.getVar('GARAGE_SIGN_AUTOVERSION') != '1' else ''} \
24 "
25
26
27S = "${WORKDIR}/git"
28
29inherit cmake pkgconfig ptest systemd
30
31# disable ptest by default as it slows down builds quite a lot
32# can be enabled manually by setting 'PTEST_ENABLED_pn-aktualizr' to '1' in local.conf
33PTEST_ENABLED = "0"
34
35SYSTEMD_PACKAGES = "${PN} ${PN}-secondary"
36SYSTEMD_SERVICE_${PN} = "aktualizr.service"
37SYSTEMD_SERVICE_${PN}-secondary = "aktualizr-secondary.service"
38
39EXTRA_OECMAKE = "-DCMAKE_BUILD_TYPE=Release -DAKTUALIZR_VERSION=${PV} ${@bb.utils.contains('PTEST_ENABLED', '1', '-DTESTSUITE_VALGRIND=on', '', d)}"
40
41GARAGE_SIGN_OPS = "${@ d.expand('-DGARAGE_SIGN_ARCHIVE=${WORKDIR}/cli-${GARAGE_SIGN_PV}.tgz') if d.getVar('GARAGE_SIGN_AUTOVERSION') != '1' else ''}"
42
43PACKAGECONFIG ?= "ostree ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} ${@bb.utils.filter('SOTA_CLIENT_FEATURES', 'hsm serialcan ubootenv', d)}"
44PACKAGECONFIG_class-native = "sota-tools"
45PACKAGECONFIG[warning-as-error] = "-DWARNING_AS_ERROR=ON,-DWARNING_AS_ERROR=OFF,"
46PACKAGECONFIG[ostree] = "-DBUILD_OSTREE=ON,-DBUILD_OSTREE=OFF,ostree,"
47PACKAGECONFIG[hsm] = "-DBUILD_P11=ON,-DBUILD_P11=OFF,libp11,"
48PACKAGECONFIG[sota-tools] = "-DBUILD_SOTA_TOOLS=ON ${GARAGE_SIGN_OPS},-DBUILD_SOTA_TOOLS=OFF,glib-2.0,"
49PACKAGECONFIG[systemd] = "-DBUILD_SYSTEMD=ON,-DBUILD_SYSTEMD=OFF,systemd,"
50PACKAGECONFIG[load-tests] = "-DBUILD_LOAD_TESTS=ON,-DBUILD_LOAD_TESTS=OFF,"
51PACKAGECONFIG[serialcan] = ",,,slcand-start"
52PACKAGECONFIG[ubootenv] = ",,,u-boot-fw-utils aktualizr-uboot-env-rollback"
53
54# can be overriden in configuration with `RESOURCE_xxx_pn-aktualizr`
55# see `man systemd.resource-control` for details
56
57# can be used to lower aktualizr priority, default is 100
58RESOURCE_CPU_WEIGHT = "100"
59# will be slowed down when it reaches 'high', killed when it reaches 'max'
60RESOURCE_MEMORY_HIGH = "100M"
61RESOURCE_MEMORY_MAX = "80%"
62
63do_compile_ptest() {
64 cmake_runcmake_build --target build_tests "${PARALLEL_MAKE}"
65}
66
67do_install_ptest() {
68 # copy the complete source directory (contains build)
69 cp -r ${B}/ ${D}/${PTEST_PATH}/build
70 cp -r ${S}/ ${D}/${PTEST_PATH}/src
71
72 # remove huge external unused repository
73 rm -rf ${D}/${PTEST_PATH}/src/partial/extern/RIOT
74
75 # remove huge build artifacts
76 find ${D}/${PTEST_PATH}/build/src -name "*.a" -delete
77
78 # fix the absolute paths
79 find ${D}/${PTEST_PATH}/build -name "CMakeFiles" | xargs rm -rf
80 find ${D}/${PTEST_PATH}/build -name "*.cmake" -or -name "DartConfiguration.tcl" -or -name "run-valgrind" | xargs sed -e "s|${S}|${PTEST_PATH}/src|g" -e "s|${B}|${PTEST_PATH}/build|g" -e "s|\"--gtest_output[^\"]*\"||g" -i
81}
82
83do_install_append () {
84 install -d ${D}${libdir}/sota
85 install -m 0644 ${S}/config/sota-shared-cred.toml ${D}/${libdir}/sota/sota-shared-cred.toml
86 install -m 0644 ${S}/config/sota-device-cred-hsm.toml ${D}/${libdir}/sota/sota-device-cred-hsm.toml
87 install -m 0644 ${S}/config/sota-device-cred.toml ${D}/${libdir}/sota/sota-device-cred.toml
88 install -m 0644 ${S}/config/sota-secondary.toml ${D}/${libdir}/sota/sota-secondary.toml
89 install -m 0644 ${S}/config/sota-uboot-env.toml ${D}/${libdir}/sota/sota-uboot-env.toml
90 install -d ${D}${systemd_unitdir}/system
91 install -m 0644 ${WORKDIR}/aktualizr-secondary.service ${D}${systemd_unitdir}/system/aktualizr-secondary.service
92 install -m 0700 -d ${D}${libdir}/sota/conf.d
93 install -m 0700 -d ${D}${sysconfdir}/sota/conf.d
94
95 if [ -n "${SOTA_HARDWARE_ID}" ]; then
96 printf "[provision]\nprimary_ecu_hardware_id = ${SOTA_HARDWARE_ID}\n" > ${D}${libdir}/sota/conf.d/40-hardware-id.toml
97 fi
98
99 install -m 0755 -d ${D}${systemd_unitdir}/system
100 aktualizr_service=${@bb.utils.contains('SOTA_CLIENT_FEATURES', 'serialcan', '${WORKDIR}/aktualizr-serialcan.service', '${WORKDIR}/aktualizr.service', d)}
101 install -m 0644 ${aktualizr_service} ${D}${systemd_unitdir}/system/aktualizr.service
102
103 if ${@bb.utils.contains('PACKAGECONFIG', 'sota-tools', 'true', 'false', d)}; then
104 install -m 0755 ${B}/src/sota_tools/garage-sign/bin/* ${D}${bindir}
105 install -m 0644 ${B}/src/sota_tools/garage-sign/lib/* ${D}${libdir}
106 fi
107
108 # resource control
109 install -d ${D}/${systemd_system_unitdir}/aktualizr.service.d
110 install -m 0644 ${WORKDIR}/10-resource-control.conf ${D}/${systemd_system_unitdir}/aktualizr.service.d
111
112 sed -i -e 's|@CPU_WEIGHT@|${RESOURCE_CPU_WEIGHT}|g' \
113 -e 's|@MEMORY_HIGH@|${RESOURCE_MEMORY_HIGH}|g' \
114 -e 's|@MEMORY_MAX@|${RESOURCE_MEMORY_MAX}|g' \
115 ${D}${systemd_system_unitdir}/aktualizr.service.d/10-resource-control.conf
116}
117
118PACKAGESPLITFUNCS_prepend = "split_hosttools_packages "
119
120python split_hosttools_packages () {
121 bindir = d.getVar('bindir')
122
123 # Split all binaries to their own packages except aktualizr-info,
124 # aktualizr-info should stay in main package aktualizr.
125 do_split_packages(d, bindir, r'^((?!(aktualizr-info)).*)$', '%s', 'Aktualizr tool - %s', extra_depends='aktualizr-configs', prepend=False)
126}
127
128PACKAGES_DYNAMIC = "^aktualizr-.* ^garage-.*"
129
130PACKAGES =+ "${PN}-resource-control ${PN}-examples ${PN}-secondary ${PN}-configs ${PN}-host-tools"
131
132ALLOW_EMPTY_${PN}-host-tools = "1"
133
134FILES_${PN} = " \
135 ${bindir}/aktualizr \
136 ${bindir}/aktualizr-info \
137 ${systemd_unitdir}/system/aktualizr.service \
138 "
139
140FILES_${PN}-resource-control = " \
141 ${systemd_system_unitdir}/aktualizr.service.d/10-resource-control.conf \
142 "
143
144FILES_${PN}-configs = " \
145 ${sysconfdir}/sota/* \
146 ${libdir}/sota/* \
147 "
148
149FILES_${PN}-examples = " \
150 ${bindir}/hmi-stub \
151 "
152
153FILES_${PN}-secondary = " \
154 ${bindir}/aktualizr-secondary \
155 ${libdir}/sota/sota-secondary.toml \
156 ${systemd_unitdir}/system/aktualizr-secondary.service \
157 "
158
159BBCLASSEXTEND = "native"
160
161# vim:set ts=4 sw=4 sts=4 expandtab: