diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-28 18:45:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-29 23:58:00 +0100 |
commit | cf1a4bfe8e5d84be7b1afeef94eecf63b2da497c (patch) | |
tree | 1f2e9f7362de003504afe5ee845f29a05e5a1079 | |
parent | 60cd120920e888f855312a6f8d48bfcecb4635a1 (diff) | |
download | poky-cf1a4bfe8e5d84be7b1afeef94eecf63b2da497c.tar.gz |
oeqa/imagefeatures: Replace lzo with zst
We may remove lzo so switch the test case to zstd.
(From OE-Core rev: f749a8b462b915713912342444f981125938a990)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/selftest/cases/imagefeatures.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/imagefeatures.py b/meta/lib/oeqa/selftest/cases/imagefeatures.py index 6d010b3e3a..a83fb2c57b 100644 --- a/meta/lib/oeqa/selftest/cases/imagefeatures.py +++ b/meta/lib/oeqa/selftest/cases/imagefeatures.py | |||
@@ -164,14 +164,14 @@ class ImageFeatures(OESelftestTestCase): | |||
164 | """ | 164 | """ |
165 | Summary: Check for chaining many CONVERSION_CMDs together | 165 | Summary: Check for chaining many CONVERSION_CMDs together |
166 | Expected: 1. core-image-minimal can be built with | 166 | Expected: 1. core-image-minimal can be built with |
167 | ext4.bmap.gz.bz2.lzo.xz.u-boot and also create a | 167 | ext4.bmap.gz.bz2.zst.xz.u-boot and also create a |
168 | sha256sum | 168 | sha256sum |
169 | 2. The above image has a valid sha256sum | 169 | 2. The above image has a valid sha256sum |
170 | Product: oe-core | 170 | Product: oe-core |
171 | Author: Tom Rini <trini@konsulko.com> | 171 | Author: Tom Rini <trini@konsulko.com> |
172 | """ | 172 | """ |
173 | 173 | ||
174 | conv = "ext4.bmap.gz.bz2.lzo.xz.u-boot" | 174 | conv = "ext4.bmap.gz.bz2.zst.xz.u-boot" |
175 | features = 'IMAGE_FSTYPES += "%s %s.sha256sum"' % (conv, conv) | 175 | features = 'IMAGE_FSTYPES += "%s %s.sha256sum"' % (conv, conv) |
176 | self.write_config(features) | 176 | self.write_config(features) |
177 | 177 | ||