summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthomas.witte@liebherr.com <thomas.witte@liebherr.com>2025-09-19 03:05:34 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-09-22 22:09:48 +0100
commite88854c2de5b4f926fd5eb10ce4c56ea075877a1 (patch)
treed5e1300bf288d710938fd5922fad1445a642a33f
parent32a2d2801e304992f671ba1eb8fefdef25ee8b9d (diff)
downloadpoky-e88854c2de5b4f926fd5eb10ce4c56ea075877a1.tar.gz
runqemu: add erofs filesystem types
runqemu does not recognize erofs, erofs-lz4, and erofs-lz4hc as filesystem types. Add them to start from an erofs filesystem without needing the full path. (From OE-Core rev: 8d5654d21c021964794c84f594748f376c2b39fc) Signed-off-by: Thomas Witte <thomas.witte@liebherr.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xscripts/runqemu3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index c24528eac8..32c7a2aab3 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -202,7 +202,8 @@ class BaseConfig(object):
202 'jffs2', 'nfs', 'btrfs', 'cpio.gz', 'cpio', 'ramfs', 202 'jffs2', 'nfs', 'btrfs', 'cpio.gz', 'cpio', 'ramfs',
203 'tar.bz2', 'tar.gz', 'tar.zst', 203 'tar.bz2', 'tar.gz', 'tar.zst',
204 'squashfs', 'squashfs-xz', 'squashfs-lzo', 204 'squashfs', 'squashfs-xz', 'squashfs-lzo',
205 'squashfs-lz4', 'squashfs-zst') 205 'squashfs-lz4', 'squashfs-zst',
206 'erofs', 'erofs-lz4', 'erofs-lz4hc')
206 self.vmtypes = ('hddimg', 'iso') 207 self.vmtypes = ('hddimg', 'iso')
207 self.fsinfo = {} 208 self.fsinfo = {}
208 self.network_device = "-device e1000,netdev=net0,mac=@MAC@" 209 self.network_device = "-device e1000,netdev=net0,mac=@MAC@"