diff options
Diffstat (limited to 'recipes-test/images')
-rw-r--r-- | recipes-test/images/primary-image.bb | 6 | ||||
-rw-r--r-- | recipes-test/images/secondary-image.bb | 15 |
2 files changed, 13 insertions, 8 deletions
diff --git a/recipes-test/images/primary-image.bb b/recipes-test/images/primary-image.bb index 6d2df94..ba1dc1f 100644 --- a/recipes-test/images/primary-image.bb +++ b/recipes-test/images/primary-image.bb | |||
@@ -2,13 +2,15 @@ include recipes-core/images/core-image-minimal.bb | |||
2 | 2 | ||
3 | SUMMARY = "A minimal Uptane Primary image running aktualizr, for testing with a Linux secondary" | 3 | SUMMARY = "A minimal Uptane Primary image running aktualizr, for testing with a Linux secondary" |
4 | 4 | ||
5 | LICENSE = "MIT" | 5 | LICENSE = "MPL-2.0" |
6 | 6 | ||
7 | IMAGE_INSTALL_remove = " \ | 7 | IMAGE_INSTALL_remove = " \ |
8 | virtual/network-configuration \ | ||
8 | " | 9 | " |
9 | 10 | ||
10 | IMAGE_INSTALL_append = " \ | 11 | IMAGE_INSTALL_append = " \ |
11 | primary-network-config \ | 12 | primary-network-config \ |
13 | primary-config \ | ||
12 | " | 14 | " |
13 | 15 | ||
14 | # vim:set ts=4 sw=4 sts=4 expandtab: | 16 | # vim:set ts=4 sw=4 sts=4 expandtab: |
diff --git a/recipes-test/images/secondary-image.bb b/recipes-test/images/secondary-image.bb index 61df85b..27d1e3f 100644 --- a/recipes-test/images/secondary-image.bb +++ b/recipes-test/images/secondary-image.bb | |||
@@ -2,18 +2,20 @@ include recipes-core/images/core-image-minimal.bb | |||
2 | 2 | ||
3 | SUMMARY = "A minimal Uptane Secondary image running aktualizr-secondary" | 3 | SUMMARY = "A minimal Uptane Secondary image running aktualizr-secondary" |
4 | 4 | ||
5 | LICENSE = "MIT" | 5 | LICENSE = "MPL-2.0" |
6 | 6 | ||
7 | SECONDARY_SERIAL_ID ?= "" | ||
8 | SOTA_HARDWARE_ID ?= "${MACHINE}-sndry" | ||
7 | 9 | ||
8 | # Remove default aktualizr primary, and the provisioning configuration (which | 10 | # Remove default aktualizr primary, and the provisioning configuration (which |
9 | # RDEPENDS on aktualizr) | 11 | # RDEPENDS on aktualizr) |
10 | IMAGE_INSTALL_remove = " \ | 12 | IMAGE_INSTALL_remove = " \ |
11 | aktualizr \ | 13 | aktualizr \ |
12 | aktualizr-auto-prov \ | 14 | aktualizr-shared-prov \ |
13 | aktualizr-auto-prov-creds \ | 15 | aktualizr-shared-prov-creds \ |
14 | aktualizr-ca-implicit-prov \ | 16 | aktualizr-device-prov \ |
15 | aktualizr-ca-implicit-prov-creds \ | 17 | aktualizr-device-prov-creds \ |
16 | aktualizr-hsm-prov \ | 18 | aktualizr-device-prov-hsm \ |
17 | aktualizr-uboot-env-rollback \ | 19 | aktualizr-uboot-env-rollback \ |
18 | virtual/network-configuration \ | 20 | virtual/network-configuration \ |
19 | " | 21 | " |
@@ -21,6 +23,7 @@ IMAGE_INSTALL_remove = " \ | |||
21 | IMAGE_INSTALL_append = " \ | 23 | IMAGE_INSTALL_append = " \ |
22 | aktualizr-secondary \ | 24 | aktualizr-secondary \ |
23 | secondary-network-config \ | 25 | secondary-network-config \ |
26 | secondary-config \ | ||
24 | " | 27 | " |
25 | 28 | ||
26 | # vim:set ts=4 sw=4 sts=4 expandtab: | 29 | # vim:set ts=4 sw=4 sts=4 expandtab: |