diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/runqemu | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
380 | # Check filename against self.fstypes can handle <file>.cpio.gz, | 380 | # Check filename against self.fstypes can handle <file>.cpio.gz, |
381 | # otherwise, its type would be "gz", which is incorrect. | 381 | # otherwise, its type would be "gz", which is incorrect. |
382 | fst = "" | 382 | fst = "" |
383 | for t in self.fstypes: | 383 | for t in self.fstypes + self.vmtypes + self.wictypes: |
384 | if p.endswith(t): | 384 | if p.endswith(t): |
385 | fst = t | 385 | fst = t |
386 | break | 386 | break |