diff options
author | Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> | 2021-10-10 00:35:39 +0900 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2021-11-01 20:10:23 +0000 |
commit | 7575dc00e85144d8e44a61607bf93147fe7c4b9b (patch) | |
tree | 9d6baddbd8eaf448092d96b4aa5a74f16bbeaea5 /meta-agl-lxc/recipes-platform | |
parent | bd307b1c87c8137cbfebf1162b981bbfa49158e3 (diff) |
Fix multiple container installation failing
When new container image add into lxc-host-image-demo, existing
image will not build.
In case of:
CONTAINER_IMAGES ?= "agl-container-cluster:guest-image-cluster-demo \
agl-container-ivi:guest-image-ivi-demo \
"
agl-container-ivi:guest-image-ivi-demo will be building,
but agl-container-cluster:guest-image-cluster-demo will not be building.
This patch fix issue for the build dependency creation to guests.
Bug-AGL: SPEC-4109
Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Change-Id: I2ed6f91f0d4db90f337a6148d6630f85c1b5c97d
Diffstat (limited to 'meta-agl-lxc/recipes-platform')
-rw-r--r-- | meta-agl-lxc/recipes-platform/images/lxc-host-image-minimal.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-agl-lxc/recipes-platform/images/lxc-host-image-minimal.bb b/meta-agl-lxc/recipes-platform/images/lxc-host-image-minimal.bb index f9c17448..17902447 100644 --- a/meta-agl-lxc/recipes-platform/images/lxc-host-image-minimal.bb +++ b/meta-agl-lxc/recipes-platform/images/lxc-host-image-minimal.bb @@ -22,7 +22,7 @@ python __anonymous() { for c in (d.getVar('CONTAINER_IMAGES') or "").split(): (mc, image) = c.split(':') dependency = 'mc::' + mc + ':' + image + ':do_image_complete' - d.setVarFlag('do_rootfs', 'mcdepends', dependency) + d.appendVarFlag('do_rootfs', 'mcdepends', ' ' + dependency) # Assume there is a X-lxc-config package for guest-image-X config = image |