diff options
Diffstat (limited to 'scripts/lib')
-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): | |||
213 | # Generate .bmap | 213 | # Generate .bmap |
214 | if self.bmap: | 214 | if self.bmap: |
215 | logger.debug("Generating bmap file for %s", disk_name) | 215 | logger.debug("Generating bmap file for %s", disk_name) |
216 | exec_native_cmd("bmaptool create %s -o %s.bmap" % (full_path, full_path), | 216 | python = os.path.join(self.native_sysroot, 'usr/bin/python3-native/python3') |
217 | self.native_sysroot) | 217 | bmaptool = os.path.join(self.native_sysroot, 'usr/bin/bmaptool') |
218 | exec_native_cmd("%s %s create %s -o %s.bmap" % \ | ||
219 | (python, bmaptool, full_path, full_path), self.native_sysroot) | ||
218 | # Compress the image | 220 | # Compress the image |
219 | if self.compressor: | 221 | if self.compressor: |
220 | logger.debug("Compressing disk %s with %s", disk_name, self.compressor) | 222 | logger.debug("Compressing disk %s with %s", disk_name, self.compressor) |