summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Kang <kai.kang@windriver.com>2022-10-28 11:44:20 +0800
committerAnuj Mittal <anuj.mittal@intel.com>2022-10-31 06:55:56 +0800
commitf6895c0dd2e6add213eb16bcf041af50ad2ec153 (patch)
tree5fae998e971be9b9b1a0b5f95a5d911f193451e3
parent590c01813e352f3e47dc927adda61599c355e4c4 (diff)
downloadmeta-dpdk-f6895c0dd2e6add213eb16bcf041af50ad2ec153.tar.gz
dpdk/22.07.0: fix SRC_URI
The SRC_URI should be "https://dpdk.org/git/dpdk" for https protocol. Otherwise it fails to fetch with git and fetch a tarball from premirror instead: WARNING: dpdk-module-22.07.0-r0 do_fetch: Failed to fetch URL git://dpdk.org/dpdk;branch=releases;protocol=https, attempting MIRRORS if available Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
-rw-r--r--recipes-extended/dpdk/dpdk-module_22.07.0.bb2
-rw-r--r--recipes-extended/dpdk/dpdk_22.07.0.bb2
2 files changed, 2 insertions, 2 deletions
diff --git a/recipes-extended/dpdk/dpdk-module_22.07.0.bb b/recipes-extended/dpdk/dpdk-module_22.07.0.bb
index 52d5d4c..3fcbf1e 100644
--- a/recipes-extended/dpdk/dpdk-module_22.07.0.bb
+++ b/recipes-extended/dpdk/dpdk-module_22.07.0.bb
@@ -2,7 +2,7 @@ include dpdk.inc
2 2
3FILESEXTRAPATHS:prepend := "${THISDIR}/dpdk:" 3FILESEXTRAPATHS:prepend := "${THISDIR}/dpdk:"
4 4
5SRC_URI = "git://dpdk.org/dpdk;branch=${BRANCH};protocol=https \ 5SRC_URI = "git://dpdk.org/git/dpdk;branch=${BRANCH};protocol=https \
6 file://0001-Makefile-add-makefile.patch \ 6 file://0001-Makefile-add-makefile.patch \
7" 7"
8 8
diff --git a/recipes-extended/dpdk/dpdk_22.07.0.bb b/recipes-extended/dpdk/dpdk_22.07.0.bb
index bbaa847..9f1843b 100644
--- a/recipes-extended/dpdk/dpdk_22.07.0.bb
+++ b/recipes-extended/dpdk/dpdk_22.07.0.bb
@@ -1,6 +1,6 @@
1include dpdk.inc 1include dpdk.inc
2 2
3SRC_URI = "git://dpdk.org/dpdk;branch=${BRANCH};protocol=https \ 3SRC_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 \ 4 file://0001-meson.build-march-and-mcpu-already-passed-by-Yocto-21.11.patch \
5" 5"
6 6