From d64c7b37c40b052510419b4d6629b83319c833e4 Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Wed, 18 May 2016 15:34:17 +0300 Subject: wic: implement --bmap option This option enables generation of .bmap file for the result image using native bmaptool. [YOCTO #9413] Signed-off-by: Ed Bartosh Signed-off-by: Richard Purdie --- scripts/lib/wic/creator.py | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts/lib/wic/creator.py') diff --git a/scripts/lib/wic/creator.py b/scripts/lib/wic/creator.py index d4972e889b..8f7d1503f5 100644 --- a/scripts/lib/wic/creator.py +++ b/scripts/lib/wic/creator.py @@ -69,6 +69,7 @@ class Creator(): optparser.add_option('', '--tmpfs', action='store_true', dest='enabletmpfs', help='Setup tmpdir as tmpfs to accelerate, experimental' ' feature, use it if you have more than 4G memory') + optparser.add_option('', '--bmap', action='store_true', help='generate .bmap') return optparser def postoptparse(self, options): -- cgit 1.2.3-korg