diff mbox series

[1/4] oeqa/qemu: Add compressed image types that are now supported

Message ID 20250804134624.1412716-1-richard.purdie@linuxfoundation.org
State New
Headers show
Series [1/4] oeqa/qemu: Add compressed image types that are now supported | expand

Commit Message

Richard Purdie Aug. 4, 2025, 1:46 p.m. UTC
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 | 2 +-
 meta/lib/oeqa/targetcontrol.py    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/meta/lib/oeqa/core/target/qemu.py b/meta/lib/oeqa/core/target/qemu.py
index d93b3ac94a2..769a6fec7e0 100644
--- a/meta/lib/oeqa/core/target/qemu.py
+++ b/meta/lib/oeqa/core/target/qemu.py
@@ -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',
diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py
index cdf382ee216..a9080077e2e 100644
--- a/meta/lib/oeqa/targetcontrol.py
+++ b/meta/lib/oeqa/targetcontrol.py
@@ -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):