]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
oeqa/qemu: Add compressed image types that are now supported
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 4 Aug 2025 13:40:38 +0000 (14:40 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 6 Aug 2025 21:32:18 +0000 (22:32 +0100)
Add compressed image types that are now supported to the supported
fstypes list.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/core/target/qemu.py
meta/lib/oeqa/targetcontrol.py

index d93b3ac94a247f4d51ee310310e4fa8a22c19d0b..769a6fec7e059d79bdf2b7cd1c86299a43cde586 100644 (file)
@@ -15,7 +15,7 @@ from collections import defaultdict
 from .ssh import OESSHTarget
 from oeqa.utils.qemurunner import QemuRunner
 
-supported_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic']
+supported_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic', 'wic.zst', 'ext3.zst', 'ext4.zst']
 
 class OEQemuTarget(OESSHTarget):
     def __init__(self, logger, server_ip, timeout=300, user='root',
index cdf382ee21658085255d22379944295df7653878..a9080077e2e1f80540047e0005b1a84760607e89 100644 (file)
@@ -86,7 +86,7 @@ class BaseTarget(object, metaclass=ABCMeta):
 
 class QemuTarget(BaseTarget):
 
-    supported_image_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic']
+    supported_image_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic', 'ext3.zst', 'ext4.zst', 'wic.zst']
 
     def __init__(self, d, logger, image_fstype=None, boot_patterns=None):