blob: 371d517d8589411e94256a993e00b014570285b1 (
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
|
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 \
aktualizr-uboot-env-rollback \
connman \
connman-client \
networkd-dhcp-conf \
"
IMAGE_INSTALL_append = " \
aktualizr-secondary \
secondary-network-config \
"
# vim:set ts=4 sw=4 sts=4 expandtab:
|