diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-02-13 11:02:14 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-15 16:28:44 +0000 |
commit | f799e218ed21572376c18fbe29f5dce0ab19fffc (patch) | |
tree | 503b01a5243ab2823d78b79a32ab8b2d1bb71a39 /meta/lib/oeqa | |
parent | 7066f1671eb1d400d33c5477ae64d2e5a5934f95 (diff) | |
download | poky-f799e218ed21572376c18fbe29f5dce0ab19fffc.tar.gz |
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)
(From OE-Core rev: 4b84328d3cd0d87ad146f034b58f68a5158313d7)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/targetcontrol.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
113 | 113 | ||
114 | class QemuTarget(BaseTarget): | 114 | class QemuTarget(BaseTarget): |
115 | 115 | ||
116 | supported_image_fstypes = ['ext3', 'ext4', 'cpio.gz'] | 116 | supported_image_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic'] |
117 | 117 | ||
118 | def __init__(self, d): | 118 | def __init__(self, d): |
119 | 119 | ||