فهرست منبع

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>
Richard Purdie 2 ماه پیش
والد
کامیت
b8fef12210
2فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 1 1
      meta/lib/oeqa/core/target/qemu.py
  2. 1 1
      meta/lib/oeqa/targetcontrol.py

+ 1 - 1
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',

+ 1 - 1
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):