diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-06-17 11:50:20 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-06-17 11:50:57 +0100 |
commit | 5967a90e8a00af0d87acb5f1bf8a5cd01750be9f (patch) | |
tree | aa65e80a796398c20f52d10db9708ad07395cd8b /meta | |
parent | 58206ea8d94e30a61dbd732d652cd2cdeb9c8e4f (diff) | |
download | poky-5967a90e8a00af0d87acb5f1bf8a5cd01750be9f.tar.gz |
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes-recipe/testimage.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
212 | raise Exception() | 212 | raise Exception() |
213 | result += output.split() | 213 | result += output.split() |
214 | except: | 214 | except: |
215 | bb.warn(f"No file/directory matching path {raw_path}") | 215 | bb.note(f"No file/directory matching path {raw_path}") |
216 | 216 | ||
217 | return result | 217 | return result |
218 | 218 | ||