From: Richard Purdie Date: Sat, 28 May 2022 17:45:15 +0000 (+0100) Subject: oeqa/imagefeatures: Replace lzo with zst X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~3995 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f749a8b462b915713912342444f981125938a990;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git oeqa/imagefeatures: Replace lzo with zst We may remove lzo so switch the test case to zstd. Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/selftest/cases/imagefeatures.py b/meta/lib/oeqa/selftest/cases/imagefeatures.py index 6d010b3e3a7..a83fb2c57b0 100644 --- a/meta/lib/oeqa/selftest/cases/imagefeatures.py +++ b/meta/lib/oeqa/selftest/cases/imagefeatures.py @@ -164,14 +164,14 @@ class ImageFeatures(OESelftestTestCase): """ Summary: Check for chaining many CONVERSION_CMDs together Expected: 1. core-image-minimal can be built with - ext4.bmap.gz.bz2.lzo.xz.u-boot and also create a + ext4.bmap.gz.bz2.zst.xz.u-boot and also create a sha256sum 2. The above image has a valid sha256sum Product: oe-core Author: Tom Rini """ - conv = "ext4.bmap.gz.bz2.lzo.xz.u-boot" + conv = "ext4.bmap.gz.bz2.zst.xz.u-boot" features = 'IMAGE_FSTYPES += "%s %s.sha256sum"' % (conv, conv) self.write_config(features)