summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linaro.org>2019-01-02 10:08:13 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-06 16:38:30 +0000
commit87845031ae672f239efbc16af4285611809f7194 (patch)
treec45c4d42caba4a10d8813f51ec62749d7c18fd8d /meta/classes
parent7de83fe2ed1ca4c33c400b14acae5efee2371c29 (diff)
downloadpoky-87845031ae672f239efbc16af4285611809f7194.tar.gz
meta/classes/testimage.bbclass: Only validate IMAGE_FSTYPES when is QEMU
When use simpleremote target the flash/boot process is executed manually, the IMAGE_FSTYPES validation is only needed when execute testimage against qemu. The supported_fstypes comes from oeqa.core.target.qemu module. (From OE-Core rev: e7dc5963adbacc091fe8943119262166977623ad) (From OE-Core rev: 5fedb011f9b2d4f6d14757a7cc9c2d8300fa0223) Signed-off-by: Aníbal Limón <anibal.limon@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-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)