diff options
author | Lee Chee Yang <chee.yang.lee@intel.com> | 2023-10-03 11:30:24 +0800 |
---|---|---|
committer | Anuj Mittal <anuj.mittal@intel.com> | 2023-10-03 14:57:36 +0800 |
commit | cb685ae5746cda6175e97e0758dc3c669eaa6633 (patch) | |
tree | 7ebeb4e807f1c7c2f18bb0dadbadab33ba024c7a /recipes-extended/dpdk/dpdk_23.03.bb | |
parent | 2fc2b68bdca44e7bb90b1360f10c4459cde911b8 (diff) | |
download | meta-dpdk-cb685ae5746cda6175e97e0758dc3c669eaa6633.tar.gz |
dpdk/23: update to 23.07
Drop CVE IGNORE as both CVE-2021-3839 and CVE-2022-0669 were fixed in
22.03.
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Diffstat (limited to 'recipes-extended/dpdk/dpdk_23.03.bb')
-rw-r--r-- | recipes-extended/dpdk/dpdk_23.03.bb | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/recipes-extended/dpdk/dpdk_23.03.bb b/recipes-extended/dpdk/dpdk_23.03.bb deleted file mode 100644 index 0f4d255..0000000 --- a/recipes-extended/dpdk/dpdk_23.03.bb +++ /dev/null | |||
@@ -1,76 +0,0 @@ | |||
1 | include dpdk.inc | ||
2 | |||
3 | SRC_URI = "git://dpdk.org/git/dpdk;branch=${BRANCH};protocol=https \ | ||
4 | file://0001-meson.build-march-and-mcpu-already-passed-by-Yocto-21.11.patch \ | ||
5 | " | ||
6 | |||
7 | BRANCH = "releases" | ||
8 | SRCREV = "189c02f5ec891ed02927062e124e8ca03adf74e7" | ||
9 | S = "${WORKDIR}/git" | ||
10 | |||
11 | # CVE-2021-3839 has been fixed by commit 4c40d30d2b in 21.11.1 | ||
12 | # NVD database is incomplete | ||
13 | # CVE-2022-0669 has been fixed by commit 6cb68162e4 in 21.11.1 | ||
14 | # NVD database is incomplete | ||
15 | CVE_CHECK_IGNORE += "\ | ||
16 | CVE-2021-3839 \ | ||
17 | CVE-2022-0669 \ | ||
18 | " | ||
19 | |||
20 | # kernel module is provide by dpdk-module recipe, so disable here | ||
21 | EXTRA_OEMESON = " -Denable_kmods=false \ | ||
22 | -Dexamples=all \ | ||
23 | " | ||
24 | |||
25 | COMPATIBLE_MACHINE = "null" | ||
26 | COMPATIBLE_HOST:libc-musl:class-target = "null" | ||
27 | COMPATIBLE_HOST:linux-gnux32 = "null" | ||
28 | |||
29 | PACKAGECONFIG ??= " " | ||
30 | PACKAGECONFIG[afxdp] = ",,libbpf xdp-tools" | ||
31 | PACKAGECONFIG[libvirt] = ",,libvirt" | ||
32 | |||
33 | RDEPENDS:${PN} += "pciutils python3-core" | ||
34 | RDEPENDS:${PN}-examples += "bash" | ||
35 | DEPENDS = "numactl python3-pyelftools-native" | ||
36 | |||
37 | inherit meson pkgconfig | ||
38 | |||
39 | INSTALL_PATH = "${prefix}/share/dpdk" | ||
40 | |||
41 | do_install:append(){ | ||
42 | # remove source files | ||
43 | rm -rf ${D}/${INSTALL_PATH}/examples/* | ||
44 | |||
45 | # Install examples | ||
46 | install -m 0755 -d ${D}/${INSTALL_PATH}/examples/ | ||
47 | for dirname in ${B}/examples/dpdk-* | ||
48 | do | ||
49 | if [ ! -d ${dirname} ] && [ -x ${dirname} ]; then | ||
50 | install -m 0755 ${dirname} ${D}/${INSTALL_PATH}/examples/ | ||
51 | fi | ||
52 | done | ||
53 | |||
54 | } | ||
55 | |||
56 | PACKAGES =+ "${PN}-examples ${PN}-tools" | ||
57 | |||
58 | FILES:${PN} += " ${bindir}/dpdk-testpmd \ | ||
59 | ${bindir}/dpdk-proc-info \ | ||
60 | ${libdir}/*.so* \ | ||
61 | ${libdir}/dpdk/pmds-22.0/*.so* \ | ||
62 | " | ||
63 | FILES:${PN}-examples = " \ | ||
64 | ${prefix}/share/dpdk/examples/* \ | ||
65 | " | ||
66 | |||
67 | FILES:${PN}-tools = " \ | ||
68 | ${bindir}/dpdk-pdump \ | ||
69 | ${bindir}/dpdk-test \ | ||
70 | ${bindir}/dpdk-test-* \ | ||
71 | ${bindir}/dpdk-*.py \ | ||
72 | " | ||
73 | |||
74 | CVE_PRODUCT = "data_plane_development_kit" | ||
75 | |||
76 | INSANE_SKIP:${PN} = "dev-so" | ||