blob: e524386d826cb980cfd85fdd3f87369e53b7a63f (
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
|
include recipes-core/images/core-image-minimal.bb
SUMMARY = "A minimal Uptane Secondary image running aktualizr-secondary"
LICENSE = "MIT"
# Remove default aktualizr primary, and the provisioning configuration (which
# RDEPENDS on aktualizr)
IMAGE_INSTALL_remove = " \
aktualizr \
aktualizr-auto-prov \
aktualizr-auto-prov-creds \
aktualizr-ca-implicit-prov \
aktualizr-ca-implicit-prov-creds \
aktualizr-hsm-prov \
connman \
connman-client \
"
IMAGE_INSTALL_append = " \
aktualizr-secondary \
secondary-network-config \
"
# vim:set ts=4 sw=4 sts=4 expandtab:
|