diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-29 11:51:59 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-29 23:58:00 +0100 |
commit | add49bc7e0910ba36230937389836f7de1acd757 (patch) | |
tree | 51797c727e5628cc85255bb3e2d19a45e02bdb27 /meta/classes/cve-check.bbclass | |
parent | 4b3b09da47965a14d4fcc4215cf152dd4f26bf69 (diff) | |
download | poky-add49bc7e0910ba36230937389836f7de1acd757.tar.gz |
cve-check: Allow warnings to be disabled
When running CVE checks in CI we're usually not interested in warnings on the
console for any CVEs present. Add a configuration option CVE_CHECK_SHOW_WARNINGS
to allow this to be disabled (it is left enabled by default).
(From OE-Core rev: 1054d3366ba528f2ad52585cf951e508958c5c68)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/cve-check.bbclass')
-rw-r--r-- | meta/classes/cve-check.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/cve-check.bbclass b/meta/classes/cve-check.bbclass index 3bb924ba34..c80a365819 100644 --- a/meta/classes/cve-check.bbclass +++ b/meta/classes/cve-check.bbclass | |||
@@ -48,6 +48,7 @@ CVE_CHECK_COPY_FILES ??= "1" | |||
48 | CVE_CHECK_CREATE_MANIFEST ??= "1" | 48 | CVE_CHECK_CREATE_MANIFEST ??= "1" |
49 | 49 | ||
50 | CVE_CHECK_REPORT_PATCHED ??= "1" | 50 | CVE_CHECK_REPORT_PATCHED ??= "1" |
51 | CVE_CHECK_SHOW_WARNINGS ??= "1" | ||
51 | 52 | ||
52 | # Provide text output | 53 | # Provide text output |
53 | CVE_CHECK_FORMAT_TEXT ??= "1" | 54 | CVE_CHECK_FORMAT_TEXT ??= "1" |
@@ -436,7 +437,7 @@ def cve_write_data_text(d, patched, unpatched, ignored, cve_data): | |||
436 | write_string += "VECTOR: %s\n" % cve_data[cve]["vector"] | 437 | write_string += "VECTOR: %s\n" % cve_data[cve]["vector"] |
437 | write_string += "MORE INFORMATION: %s%s\n\n" % (nvd_link, cve) | 438 | write_string += "MORE INFORMATION: %s%s\n\n" % (nvd_link, cve) |
438 | 439 | ||
439 | if unpatched_cves: | 440 | if unpatched_cves and d.getVar("CVE_CHECK_SHOW_WARNINGS") == "1": |
440 | bb.warn("Found unpatched CVE (%s), for more information check %s" % (" ".join(unpatched_cves),cve_file)) | 441 | bb.warn("Found unpatched CVE (%s), for more information check %s" % (" ".join(unpatched_cves),cve_file)) |
441 | 442 | ||
442 | if write_string: | 443 | if write_string: |