summaryrefslogtreecommitdiffstats
path: root/meta/classes/testimage.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/testimage.bbclass')
-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 43a0abaec2..73cd375dcb 100644
--- a/meta/classes/testimage.bbclass
+++ b/meta/classes/testimage.bbclass
@@ -201,12 +201,13 @@ def testimage_main(d):
201 machine = d.getVar("MACHINE") 201 machine = d.getVar("MACHINE")
202 202
203 # Get rootfs 203 # Get rootfs
204 fstypes = [fs for fs in d.getVar('IMAGE_FSTYPES').split(' ') 204 fstypes = d.getVar('IMAGE_FSTYPES').split()
205 if fs in supported_fstypes] 205 if d.getVar("TEST_TARGET") == "qemu":
206 if not fstypes: 206 fstypes = [fs for fs in fstypes if fs in supported_fstypes]
207 bb.fatal('Unsupported image type built. Add a comptible image to ' 207 if not fstypes:
208 'IMAGE_FSTYPES. Supported types: %s' % 208 bb.fatal('Unsupported image type built. Add a comptible image to '
209 ', '.join(supported_fstypes)) 209 'IMAGE_FSTYPES. Supported types: %s' %
210 ', '.join(supported_fstypes))
210 rootfs = '%s.%s' % (image_name, fstypes[0]) 211 rootfs = '%s.%s' % (image_name, fstypes[0])
211 212
212 # Get tmpdir (not really used, just for compatibility) 213 # Get tmpdir (not really used, just for compatibility)