Message ID | 20250731082707.3481718-3-yoann.congal@smile.fr |
---|---|
State | New |
Headers | show |
Series | [v3,1/4] runqemu: Add support for running compressed .zst rootfs images | expand |
diff --git a/scripts/runqemu b/scripts/runqemu index c668906bdd..da53265219 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -380,7 +380,7 @@ class BaseConfig(object): # Check filename against self.fstypes can handle <file>.cpio.gz, # otherwise, its type would be "gz", which is incorrect. fst = "" - for t in self.fstypes: + for t in self.fstypes + self.vmtypes + self.wictypes: if p.endswith(t): fst = t break