summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2017-01-18 19:13:39 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-23 12:05:17 +0000
commita79b32c75af78c602d1822dc2d60f24b74fc549c (patch)
tree3e98c68ec5a2415a3bfcad75a218f7476a5572f3
parent06a450000464ece1da9daf31081641b9af20e227 (diff)
downloadpoky-a79b32c75af78c602d1822dc2d60f24b74fc549c.tar.gz
selftest: build wic-tools in the Wic.setUp
Built wic-tools recipe instead of set of tools recipes to ensure that all tools are available from one recipe sysroot. (From OE-Core rev: 52ce14d5ea667ffd319fdb3e147b6eb29505cf8e) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oeqa/selftest/wic.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py
index 49bbfe3bce..e45594fdc8 100644
--- a/meta/lib/oeqa/selftest/wic.py
+++ b/meta/lib/oeqa/selftest/wic.py
@@ -51,8 +51,7 @@ class Wic(oeSelfTest):
51 # clean up which can result in the native tools built earlier in 51 # clean up which can result in the native tools built earlier in
52 # setUpClass being unavailable. 52 # setUpClass being unavailable.
53 if not Wic.image_is_ready: 53 if not Wic.image_is_ready:
54 bitbake('syslinux syslinux-native parted-native gptfdisk-native ' 54 bitbake('wic-tools')
55 'dosfstools-native mtools-native bmap-tools-native')
56 bitbake('core-image-minimal') 55 bitbake('core-image-minimal')
57 Wic.image_is_ready = True 56 Wic.image_is_ready = True
58 57