diff options
| author | Mikko Rapeli <mikko.rapeli@linaro.org> | 2024-11-11 13:16:02 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-11-12 11:31:48 +0000 |
| commit | e743cde63c2fe6beed8eedcd5a41eb497853c7c2 (patch) | |
| tree | 2b7e7956d02f9a1bcac0cb1fe3acb06f3791aa23 | |
| parent | a38695f2ec50e233e5d957abd71c59adb68c2813 (diff) | |
| download | poky-e743cde63c2fe6beed8eedcd5a41eb497853c7c2.tar.gz | |
uki.bbclass: fix debug print logging level
Missing/unknown log level triggers a warning.
(From OE-Core rev: ab2d1eeb4cad7ef8791954b36f8123cb35b8c000)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/classes-recipe/uki.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/uki.bbclass b/meta/classes-recipe/uki.bbclass index d4f25c7fd2..441e4a7f8e 100644 --- a/meta/classes-recipe/uki.bbclass +++ b/meta/classes-recipe/uki.bbclass | |||
| @@ -189,7 +189,7 @@ python do_uki() { | |||
| 189 | ukify_cmd += " %s" % (output) | 189 | ukify_cmd += " %s" % (output) |
| 190 | 190 | ||
| 191 | # Run the ukify command | 191 | # Run the ukify command |
| 192 | bb.debug("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 | bb.process.run(ukify_cmd, shell=True) |
| 194 | } | 194 | } |
| 195 | addtask uki after do_rootfs before do_deploy do_image_complete do_image_wic | 195 | addtask uki after do_rootfs before do_deploy do_image_complete do_image_wic |
