diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-07-15 09:53:47 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-20 10:24:54 +0100 |
commit | dd11ab551f9bf1d8761d0430f19510a9caa53a12 (patch) | |
tree | 6305362b1613be66ecefdda653ce6691f4df51e7 /meta/lib | |
parent | 681b75cb7c1ad88774d611119c9a7f6d076ff2c5 (diff) | |
download | openembedded-core-dd11ab551f9bf1d8761d0430f19510a9caa53a12.tar.gz openembedded-core-dd11ab551f9bf1d8761d0430f19510a9caa53a12.tar.bz2 openembedded-core-dd11ab551f9bf1d8761d0430f19510a9caa53a12.zip |
wic: oe-selftest: build bmap-tools-native
bmap-tools-native is required to generate .bmap file. Without it
wic fails with this error when run with --bmap option:
Error: A native program bmaptool required to build
the image was not found
Added bmap-tools-native to the list of requirements to build
in Wic.setUpLocal method.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/lib')
-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 895c6d6d01..e550785fcf 100644 --- a/meta/lib/oeqa/selftest/wic.py +++ b/meta/lib/oeqa/selftest/wic.py @@ -49,7 +49,7 @@ class Wic(oeSelfTest): # setUpClass being unavailable. if not Wic.image_is_ready: bitbake('syslinux syslinux-native parted-native gptfdisk-native ' - 'dosfstools-native mtools-native') + 'dosfstools-native mtools-native bmap-tools-native') bitbake('core-image-minimal') Wic.image_is_ready = True |