summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/testimage.bbclass13
1 files changed, 7 insertions, 6 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass
index e01ceedf61..d77f8e6862 100644
--- a/meta/classes/testimage.bbclass
+++ b/meta/classes/testimage.bbclass
@@ -198,12 +198,13 @@ def testimage_main(d):
198 machine = d.getVar("MACHINE") 198 machine = d.getVar("MACHINE")
199 199
200 # Get rootfs 200 # Get rootfs
201 fstypes = [fs for fs in d.getVar('IMAGE_FSTYPES').split(' ') 201 fstypes = d.getVar('IMAGE_FSTYPES').split()
202 if fs in supported_fstypes] 202 if d.getVar("TEST_TARGET") == "qemu":
203 if not fstypes: 203 fstypes = [fs for fs in fstypes if fs in supported_fstypes]
204 bb.fatal('Unsupported image type built. Add a comptible image to ' 204 if not fstypes:
205 'IMAGE_FSTYPES. Supported types: %s' % 205 bb.fatal('Unsupported image type built. Add a comptible image to '
206 ', '.join(supported_fstypes)) 206 'IMAGE_FSTYPES. Supported types: %s' %
207 ', '.join(supported_fstypes))
207 rootfs = '%s.%s' % (image_name, fstypes[0]) 208 rootfs = '%s.%s' % (image_name, fstypes[0])
208 209
209 # Get tmpdir (not really used, just for compatibility) 210 # Get tmpdir (not really used, just for compatibility)