diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2020-03-21 17:11:31 +0100 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2020-03-21 17:11:31 +0100 |
commit | a496e40faf21a5963731de1719fd2f8a3b839ede (patch) | |
tree | 9fd2bdd0c956ae8c83c76d07dd01eacd0339ee8a /meta-agl-profile-core/conf | |
parent | 44eb76cfdc726cbcfceef704ccce1a88c875fa81 (diff) |
Only compress vmdk in AGLCI and extend inclusion of drivers
To save space and download bandwith, we use the compressed format in CI.
Also adapt the inclusion of the guest drivers to the compressed image.
Bug-AGL: SPEC-2771
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Change-Id: I140fb31954be5ec2b46596a9816087d3fb670416
Diffstat (limited to 'meta-agl-profile-core/conf')
-rw-r--r-- | meta-agl-profile-core/conf/include/agl-devel.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-agl-profile-core/conf/include/agl-devel.inc b/meta-agl-profile-core/conf/include/agl-devel.inc index 2157f6f1a..914ab393e 100644 --- a/meta-agl-profile-core/conf/include/agl-devel.inc +++ b/meta-agl-profile-core/conf/include/agl-devel.inc @@ -4,7 +4,8 @@ IMAGE_INSTALL_append = " \ packagegroup-agl-core-devel \ " -IMAGE_INSTALL_append = "${@bb.utils.contains('IMAGE_FSTYPES', 'wic.vmdk', ' open-vm-tools vboxguestdrivers', '', d)}" +IMAGE_INSTALL_append = "${@bb.utils.contains_any('IMAGE_FSTYPES', 'wic.vmdk wic.vmdk.xz', ' open-vm-tools vboxguestdrivers', '', d)}" + # Install libdrm-test, including modetest, to images with GUI IMAGE_INSTALL_append = "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', ' libdrm-tests', '', d)}" |