diff options
-rw-r--r-- | meta/classes-recipe/uki.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes-recipe/uki.bbclass b/meta/classes-recipe/uki.bbclass index 92f690526d..ccda042ab4 100644 --- a/meta/classes-recipe/uki.bbclass +++ b/meta/classes-recipe/uki.bbclass | |||
@@ -190,6 +190,7 @@ python do_uki() { | |||
190 | 190 | ||
191 | # Run the ukify command | 191 | # Run the ukify command |
192 | bb.debug(2, "uki: running command: %s" % (ukify_cmd)) | 192 | bb.debug(2, "uki: running command: %s" % (ukify_cmd)) |
193 | bb.process.run(ukify_cmd, shell=True) | 193 | out, err = bb.process.run(ukify_cmd, shell=True) |
194 | bb.debug(2, "%s\n%s" % (out, err)) | ||
194 | } | 195 | } |
195 | addtask uki after do_rootfs before do_deploy do_image_complete do_image_wic | 196 | addtask uki after do_rootfs before do_deploy do_image_complete do_image_wic |