diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-02-13 11:02:21 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-15 16:28:45 +0000 |
commit | 5d156bc066db923a57c70c146b90cdd124d60238 (patch) | |
tree | d069f9651c17527ab38427f65733c7a438b13aed /meta/lib/oeqa | |
parent | 80e892894258fc9d87e97301ea04ee43c667e282 (diff) | |
download | poky-5d156bc066db923a57c70c146b90cdd124d60238.tar.gz |
oe-selftest: don't use specific tasks
Image should be build usual way, i.e. using bitbake <image>.
Specifying do_mage_complete and do_rootfs_wicenv tasks should not
be needed anymore as those tasks should be run by bitbake for
every image.
Removed specifying do_mage_complete and do_rootfs_wicenv tasks
from bitbake calls.
(From OE-Core rev: d8d7bd1b41eb846f18378a2581ff172cb2cc52b8)
(From OE-Core rev: 00cd291605ff5f001979b350d95670e33012fdc9)
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/selftest/wic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py index ed0301837b..b3f9f1ef5e 100644 --- a/meta/lib/oeqa/selftest/wic.py +++ b/meta/lib/oeqa/selftest/wic.py | |||
@@ -50,7 +50,7 @@ class Wic(oeSelfTest): | |||
50 | if not Wic.image_is_ready: | 50 | if not Wic.image_is_ready: |
51 | bitbake('syslinux syslinux-native parted-native gptfdisk-native ' | 51 | bitbake('syslinux syslinux-native parted-native gptfdisk-native ' |
52 | 'dosfstools-native mtools-native') | 52 | 'dosfstools-native mtools-native') |
53 | bitbake('core-image-minimal:do_image_complete core-image-minimal:do_rootfs_wicenv') | 53 | bitbake('core-image-minimal') |
54 | Wic.image_is_ready = True | 54 | Wic.image_is_ready = True |
55 | 55 | ||
56 | rmtree(self.resultdir, ignore_errors=True) | 56 | rmtree(self.resultdir, ignore_errors=True) |