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:23 +0000 |
commit | 4b84328d3cd0d87ad146f034b58f68a5158313d7 (patch) | |
tree | 83b0b4b9e9cc4497cbd756ea10288207730d6da0 /meta/lib/oeqa | |
parent | 67ccf7413b2ac9f516dbdaa6a39d4cec38a6c94d (diff) | |
download | openembedded-core-4b84328d3cd0d87ad146f034b58f68a5158313d7.tar.gz openembedded-core-4b84328d3cd0d87ad146f034b58f68a5158313d7.tar.bz2 openembedded-core-4b84328d3cd0d87ad146f034b58f68a5158313d7.zip |
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 <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): class QemuTarget(BaseTarget): - supported_image_fstypes = ['ext3', 'ext4', 'cpio.gz'] + supported_image_fstypes = ['ext3', 'ext4', 'cpio.gz', 'wic'] def __init__(self, d): |