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:28:50 +0100 |
commit | 05084640e6642acbdd4950a31d0879b482cb2701 (patch) | |
tree | 4d920ec30a70ee1b4ef723bcf620f8d36a30f811 /meta/lib | |
parent | ed319ff4015491b00a1d4d154baa5d05780cde90 (diff) | |
download | poky-05084640e6642acbdd4950a31d0879b482cb2701.tar.gz |
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.
(From OE-Core rev: dd11ab551f9bf1d8761d0430f19510a9caa53a12)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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): | |||
49 | # setUpClass being unavailable. | 49 | # setUpClass being unavailable. |
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 bmap-tools-native') |
53 | bitbake('core-image-minimal') | 53 | bitbake('core-image-minimal') |
54 | Wic.image_is_ready = True | 54 | Wic.image_is_ready = True |
55 | 55 | ||