summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-08-04 14:43:26 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-08-06 22:32:41 +0100
commit23174f64940ed33eb714a8bc5ff48729d6dd2607 (patch)
tree3a79b01f24a7526cde7e54c113726fcc93466a5e
parentb8fef122103ddd215cd9152e4717ad2158f9d8f2 (diff)
downloadpoky-23174f64940ed33eb714a8bc5ff48729d6dd2607.tar.gz
scripts/runqemu: Update the fstypes list with newly supported compressed images types
Update the interal list of types within runqemu with the newly added compression formats it supports. This fixes autodetection of qemuboot file locations. (From OE-Core rev: 46b9a1c74df00f76f7c19b5ed27e6a569aaabb5e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xscripts/runqemu5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index a57fe794dc..827300080a 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -198,8 +198,9 @@ class BaseConfig(object):
198 self.bitbake_e = '' 198 self.bitbake_e = ''
199 self.snapshot = False 199 self.snapshot = False
200 self.wictypes = ('wic.zst', 'wic', 'wic.vmdk', 'wic.qcow2', 'wic.vdi', "wic.vhd", "wic.vhdx") 200 self.wictypes = ('wic.zst', 'wic', 'wic.vmdk', 'wic.qcow2', 'wic.vdi', "wic.vhd", "wic.vhdx")
201 self.fstypes = ('ext2', 'ext3', 'ext4', 'jffs2', 'nfs', 'btrfs', 201 self.fstypes = ('ext2', 'ext3', 'ext4', 'ext2.zst', 'ext3.zst', 'ext4.zst',
202 'cpio.gz', 'cpio', 'ramfs', 'tar.bz2', 'tar.gz', 202 'jffs2', 'nfs', 'btrfs', 'cpio.gz', 'cpio', 'ramfs',
203 'tar.bz2', 'tar.gz', 'tar.zst',
203 'squashfs', 'squashfs-xz', 'squashfs-lzo', 204 'squashfs', 'squashfs-xz', 'squashfs-lzo',
204 'squashfs-lz4', 'squashfs-zst') 205 'squashfs-lz4', 'squashfs-zst')
205 self.vmtypes = ('hddimg', 'iso') 206 self.vmtypes = ('hddimg', 'iso')