diff mbox series

[2/4] scripts/runqemu: Update the fstypes list with newly supported compressed images types

Message ID 20250804134624.1412716-2-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
Update the interal list of types within runqemu with the newly added
compression formats it supports.

This fixes autodetection of qemuboot file locations.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 scripts/runqemu | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/scripts/runqemu b/scripts/runqemu
index a57fe794dc8..827300080a2 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -198,8 +198,9 @@  class BaseConfig(object):
         self.bitbake_e = ''
         self.snapshot = False
         self.wictypes = ('wic.zst', 'wic', 'wic.vmdk', 'wic.qcow2', 'wic.vdi', "wic.vhd", "wic.vhdx")
-        self.fstypes = ('ext2', 'ext3', 'ext4', 'jffs2', 'nfs', 'btrfs',
-                        'cpio.gz', 'cpio', 'ramfs', 'tar.bz2', 'tar.gz',
+        self.fstypes = ('ext2', 'ext3', 'ext4', 'ext2.zst', 'ext3.zst', 'ext4.zst',
+                        'jffs2', 'nfs', 'btrfs', 'cpio.gz', 'cpio', 'ramfs',
+                        'tar.bz2', 'tar.gz', 'tar.zst',
                         'squashfs', 'squashfs-xz', 'squashfs-lzo',
                         'squashfs-lz4', 'squashfs-zst')
         self.vmtypes = ('hddimg', 'iso')