From: Ed Bartosh Date: Sat, 13 Feb 2016 09:02:14 +0000 (+0200) Subject: oeqa/targetcontrol: support wic image type X-Git-Tag: 2016-4~893 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=4b84328d3cd0d87ad146f034b58f68a5158313d7;p=openembedded-core.git oeqa/targetcontrol: support wic image type Added 'wic' to the list image types supported by targetcontrol. This is a preparation for booting and testing wic images with oe-selftest. [YOCTO #8498] (From OE-Core rev: 7dda053fbd1ea1354b7720cfa691470ba88ef5b9) Signed-off-by: Ed Bartosh Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py index f461651930..5422a617c4 100644 --- a/meta/lib/oeqa/targetcontrol.py +++ b/meta/lib/oeqa/targetcontrol.py @@ -113,7 +113,7 @@ class BaseTarget(object): class QemuTarget(BaseTarget): - supported_image_fstypes = ['ext3', 'ext4', 'cpio.gz'] + supported_image_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic'] def __init__(self, d):