From 5967a90e8a00af0d87acb5f1bf8a5cd01750be9f Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sat, 17 Jun 2023 11:50:20 +0100 Subject: testimage: Only note missing target directories, don't warn We don't need to see warnings for missing target debug directories. Just show a note in the logs instead. (From OE-Core rev: 52db25c58069c4f440da33daf0474255c9fa870b) Signed-off-by: Richard Purdie --- meta/classes-recipe/testimage.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes-recipe/testimage.bbclass b/meta/classes-recipe/testimage.bbclass index 765184c180..0f02eadf57 100644 --- a/meta/classes-recipe/testimage.bbclass +++ b/meta/classes-recipe/testimage.bbclass @@ -212,7 +212,7 @@ def get_artifacts_list(target, raw_list): raise Exception() result += output.split() except: - bb.warn(f"No file/directory matching path {raw_path}") + bb.note(f"No file/directory matching path {raw_path}") return result -- cgit v1.2.3-54-g00ecf