summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYogesh Tyagi <yogesh.tyagi@intel.com>2022-09-14 13:08:11 +0800
committerAnuj Mittal <anuj.mittal@intel.com>2022-09-20 13:52:33 +0800
commit8d788d115c241fa35787a2667a73400e2b579b25 (patch)
tree87119488dd86b5577f6f7b67d10e874e8a5bc571
parent34e5b67f2544bb5a43571318bb77691c1053d96f (diff)
downloadmeta-dpdk-8d788d115c241fa35787a2667a73400e2b579b25.tar.gz
dpdk/19.11: ignore CVE-2022-28199
This is fixed in 19.11 but the CPE data in NVD is incomplete. [upstream commit link : https://git.dpdk.org/dpdk-stable/commit/?h=19.11&id=8b090f2664e9d014cd8fa0fde90597aaf4349e7e] Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
-rw-r--r--recipes-extended/dpdk/dpdk_19.11.13.bb13
1 files changed, 8 insertions, 5 deletions
diff --git a/recipes-extended/dpdk/dpdk_19.11.13.bb b/recipes-extended/dpdk/dpdk_19.11.13.bb
index f560441..4e53606 100644
--- a/recipes-extended/dpdk/dpdk_19.11.13.bb
+++ b/recipes-extended/dpdk/dpdk_19.11.13.bb
@@ -12,13 +12,16 @@ LIC_FILES_CHKSUM = "file://license/gpl-2.0.txt;md5=b234ee4d69f5fce4486a80fdaf4a4
12 file://license/lgpl-2.1.txt;md5=4b54a1fd55a448865a0b32d41598759d \ 12 file://license/lgpl-2.1.txt;md5=4b54a1fd55a448865a0b32d41598759d \
13 file://license/bsd-3-clause.txt;md5=0f00d99239d922ffd13cabef83b33444" 13 file://license/bsd-3-clause.txt;md5=0f00d99239d922ffd13cabef83b33444"
14 14
15do_install_append () {
16 # Remove the unneeded dir
17 rm -rf ${D}/${INSTALL_PATH}/${RTE_TARGET}/app
18}
19
15# CVE-2021-3839 has been fixed by commit aef547884b in 19.11 20# CVE-2021-3839 has been fixed by commit aef547884b in 19.11
16# NVD database is incomplete 21# NVD database is incomplete
22# CVE-2022-28199 has been fixed by commit ef311075d2 in 19.11
23# NVD database is incomplete
17CVE_CHECK_WHITELIST += "\ 24CVE_CHECK_WHITELIST += "\
18 CVE-2021-3839 \ 25 CVE-2021-3839 \
26 CVE-2022-28199 \
19" 27"
20
21do_install_append () {
22 # Remove the unneeded dir
23 rm -rf ${D}/${INSTALL_PATH}/${RTE_TARGET}/app
24}