diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-08-04 14:40:38 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-08-06 22:32:41 +0100 |
commit | b8fef122103ddd215cd9152e4717ad2158f9d8f2 (patch) | |
tree | 5f254c8ad1996b5ed6870808ed5b6f9d001a2302 /meta | |
parent | b034dcc31437447d363e447124bdd0e586931138 (diff) | |
download | poky-b8fef122103ddd215cd9152e4717ad2158f9d8f2.tar.gz |
oeqa/qemu: Add compressed image types that are now supported
Add compressed image types that are now supported to the supported
fstypes list.
(From OE-Core rev: 2e2406213347ad294e301de45ff5be59292bdc3b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/core/target/qemu.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/targetcontrol.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/core/target/qemu.py b/meta/lib/oeqa/core/target/qemu.py index d93b3ac94a..769a6fec7e 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 | |||
15 | from .ssh import OESSHTarget | 15 | from .ssh import OESSHTarget |
16 | from oeqa.utils.qemurunner import QemuRunner | 16 | from oeqa.utils.qemurunner import QemuRunner |
17 | 17 | ||
18 | supported_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic'] | 18 | supported_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic', 'wic.zst', 'ext3.zst', 'ext4.zst'] |
19 | 19 | ||
20 | class OEQemuTarget(OESSHTarget): | 20 | class OEQemuTarget(OESSHTarget): |
21 | def __init__(self, logger, server_ip, timeout=300, user='root', | 21 | 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 cdf382ee21..a9080077e2 100644 --- a/meta/lib/oeqa/targetcontrol.py +++ b/meta/lib/oeqa/targetcontrol.py | |||
@@ -86,7 +86,7 @@ class BaseTarget(object, metaclass=ABCMeta): | |||
86 | 86 | ||
87 | class QemuTarget(BaseTarget): | 87 | class QemuTarget(BaseTarget): |
88 | 88 | ||
89 | supported_image_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic'] | 89 | supported_image_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic', 'ext3.zst', 'ext4.zst', 'wic.zst'] |
90 | 90 | ||
91 | def __init__(self, d, logger, image_fstype=None, boot_patterns=None): | 91 | def __init__(self, d, logger, image_fstype=None, boot_patterns=None): |
92 | 92 | ||