summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/cve-check.bbclass13
1 files changed, 9 insertions, 4 deletions
diff --git a/meta/classes/cve-check.bbclass b/meta/classes/cve-check.bbclass
index ffd624333f..5979edf3d1 100644
--- a/meta/classes/cve-check.bbclass
+++ b/meta/classes/cve-check.bbclass
@@ -41,10 +41,15 @@ CVE_CHECK_PN_WHITELIST = "\
41 glibc-locale \ 41 glibc-locale \
42" 42"
43 43
44# Whitelist for CVE and version of package 44# Whitelist for CVE and version of package. If a CVE is found then the PV is
45CVE_CHECK_CVE_WHITELIST = "{\ 45# compared with the version list, and if found the CVE is considered
46 'CVE-2014-2524': ('6.3','5.2',), \ 46# patched.
47}" 47#
48# The value should be valid Python in this format:
49# {
50# 'CVE-2014-2524': ('6.3','5.2')
51# }
52CVE_CHECK_CVE_WHITELIST ?= "{}"
48 53
49python do_cve_check () { 54python do_cve_check () {
50 """ 55 """