diff options
author | Phil Wise <phil@advancedtelematic.com> | 2017-08-07 15:47:58 +0200 |
---|---|---|
committer | Phil Wise <phil@advancedtelematic.com> | 2017-09-13 16:58:59 +0200 |
commit | 9f5623f22b2f1b4f58a6b41a51193cd441042d4e (patch) | |
tree | 5496da2de204005b43ffba801d60403c7068d9ca /recipes-sota | |
parent | 1f7c727d507146b39ccf443f09cc68237cc79d5c (diff) | |
download | meta-updater-9f5623f22b2f1b4f58a6b41a51193cd441042d4e.tar.gz |
Make it easier to build from branches and run a specific image
Is is now easy to build a specific branch by adding the following line to
local.conf
BRANCH_pn-aktualizr = "mybranchname"
Also, the run-qemu-ota script can also take a path to an image file, which is
useful for long-term test images.
Diffstat (limited to 'recipes-sota')
-rw-r--r-- | recipes-sota/aktualizr/aktualizr_git.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes-sota/aktualizr/aktualizr_git.bb b/recipes-sota/aktualizr/aktualizr_git.bb index bd85b2a..2d0dadc 100644 --- a/recipes-sota/aktualizr/aktualizr_git.bb +++ b/recipes-sota/aktualizr/aktualizr_git.bb | |||
@@ -13,9 +13,11 @@ RDEPENDS_${PN}_append = "${@bb.utils.contains('SOTA_CLIENT_FEATURES', 'hsm', ' e | |||
13 | RDEPENDS_${PN}_append = "${@bb.utils.contains('SOTA_CLIENT_FEATURES', 'hsm-test', ' softhsm softhsm-testtoken', '', d)}" | 13 | RDEPENDS_${PN}_append = "${@bb.utils.contains('SOTA_CLIENT_FEATURES', 'hsm-test', ' softhsm softhsm-testtoken', '', d)}" |
14 | 14 | ||
15 | SRC_URI = " \ | 15 | SRC_URI = " \ |
16 | git://github.com/advancedtelematic/aktualizr \ | 16 | git://github.com/advancedtelematic/aktualizr;branch=${BRANCH} \ |
17 | " | 17 | " |
18 | SRCREV = "1004efa3f86cef90c012b34620992b5762b741e3" | 18 | SRCREV = "1004efa3f86cef90c012b34620992b5762b741e3" |
19 | BRANCH ?= "master" | ||
20 | |||
19 | PV = "1.0+git${SRCPV}" | 21 | PV = "1.0+git${SRCPV}" |
20 | PR = "7" | 22 | PR = "7" |
21 | 23 | ||