From: Ed Bartosh Date: Thu, 20 Aug 2015 09:10:35 +0000 (+0300) Subject: image.py: add script output to the rootfs log X-Git-Tag: 2015-10~697 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=fd6eba587e39142134aeb9044393c08a3f79d28c;p=openembedded-core.git image.py: add script output to the rootfs log Let's add output of image creation script to the bitbake log as it can contain useful information. One good example of such an information is wic report about artifacts and .wks file used for image creation. Signed-off-by: Ed Bartosh Signed-off-by: Ross Burton --- diff --git a/meta/lib/oe/image.py b/meta/lib/oe/image.py index d9121fc907..a2f94a1cd4 100644 --- a/meta/lib/oe/image.py +++ b/meta/lib/oe/image.py @@ -11,11 +11,14 @@ def generate_image(arg): (type, create_img_cmd)) try: - subprocess.check_output(create_img_cmd, stderr=subprocess.STDOUT) + output = subprocess.check_output(create_img_cmd, + stderr=subprocess.STDOUT) except subprocess.CalledProcessError as e: return("Error: The image creation script '%s' returned %d:\n%s" % (e.cmd, e.returncode, e.output)) + bb.note("Script output:\n%s" % output) + return None