diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-09-06 15:08:25 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-09-11 17:30:12 +0100 |
commit | 7fca44e03130c0860cc5df2093902773f426c774 (patch) | |
tree | 330d1cf53aa349d601216c2412a312cf6adb9a23 /scripts/lib/wic/plugins/imager/direct.py | |
parent | 0d6130b30a1219b2bc2c57578f291311f69c676e (diff) | |
download | openembedded-core-7fca44e03130c0860cc5df2093902773f426c774.tar.gz openembedded-core-7fca44e03130c0860cc5df2093902773f426c774.tar.bz2 openembedded-core-7fca44e03130c0860cc5df2093902773f426c774.zip |
wic: run bmaptool with native Python3
Modified wic code to run bmaptool using native Python3
from wic-tools native sysroot.
[YOCTO #11891]
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts/lib/wic/plugins/imager/direct.py')
-rw-r--r-- | scripts/lib/wic/plugins/imager/direct.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/lib/wic/plugins/imager/direct.py b/scripts/lib/wic/plugins/imager/direct.py index 5765bbb527..a6abc3d09e 100644 --- a/scripts/lib/wic/plugins/imager/direct.py +++ b/scripts/lib/wic/plugins/imager/direct.py @@ -213,8 +213,10 @@ class DirectPlugin(ImagerPlugin): # Generate .bmap if self.bmap: logger.debug("Generating bmap file for %s", disk_name) - exec_native_cmd("bmaptool create %s -o %s.bmap" % (full_path, full_path), - self.native_sysroot) + python = os.path.join(self.native_sysroot, 'usr/bin/python3-native/python3') + bmaptool = os.path.join(self.native_sysroot, 'usr/bin/bmaptool') + exec_native_cmd("%s %s create %s -o %s.bmap" % \ + (python, bmaptool, full_path, full_path), self.native_sysroot) # Compress the image if self.compressor: logger.debug("Compressing disk %s with %s", disk_name, self.compressor) |