From 9badc1c640d356514f15ba6d34483e53ad6337c7 Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Thu, 20 Aug 2015 12:10:35 +0300 Subject: 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. (From OE-Core rev: fd6eba587e39142134aeb9044393c08a3f79d28c) Signed-off-by: Ed Bartosh Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/lib/oe/image.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'meta') 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 -- cgit v1.2.3-54-g00ecf