mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 12:59:03 +02:00
meta-isg: dpdk: Update v2.2.0 -> v16.04
update the dpdk recipe from v2.2.0 to v16.04. Rename the patches according to the recipe version. Now dpdk is following 'year-month' format for version numbering. dpdk v16.04 required "CONFIG_RTE_IP_FRAG=y" in order to build ip_fragmentation application. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
This commit is contained in:
parent
b6c9d76e18
commit
c5650b6811
|
@ -4,9 +4,9 @@ LICENSE = "BSD & LGPLv2 & GPLv2"
|
|||
LIC_FILES_CHKSUM = "file://LICENSE.GPL;md5=751419260aa954499f7abaabaa882bbe"
|
||||
|
||||
SRC_URI = "http://dpdk.org/browse/dpdk/snapshot/dpdk-${PV}.tar.gz;name=dpdk \
|
||||
file://dpdk-2.2.0-add-RTE_KERNELDIR_OUT-to-split-kernel-bu.patch \
|
||||
file://dpdk-2.2.0-add-sysroot-option-within-app-makefile.patch \
|
||||
file://dpdk-2.2.0-point-to-the-right-include-and-lib-path.patch \
|
||||
file://dpdk-16.04-add-RTE_KERNELDIR_OUT-to-split-kernel-bu.patch \
|
||||
file://dpdk-16.04-add-sysroot-option-within-app-makefile.patch \
|
||||
file://dpdk-16.04-point-to-the-right-include-and-lib-path.patch \
|
||||
"
|
||||
|
||||
COMPATIBLE_MACHINE = "crystalforest|intel-corei7-64"
|
||||
|
|
|
@ -0,0 +1,33 @@
|
|||
From f7be643cc62860a986c9e0aec990c90bfc58a941 Mon Sep 17 00:00:00 2001
|
||||
From: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com>
|
||||
Date: Fri, 1 Apr 2016 17:31:55 +0800
|
||||
Subject: [PATCH] dpdk: enable ip_fragmentation in common_base config
|
||||
|
||||
Upstream-Status: Inappropriate [Configuration]
|
||||
|
||||
This configuration need to set for ip_fragmentation application.
|
||||
|
||||
Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com>
|
||||
---
|
||||
config/common_base | 5 +++++
|
||||
1 file changed, 5 insertions(+)
|
||||
|
||||
diff --git a/config/common_base b/config/common_base
|
||||
index abd6a64..90259f0 100644
|
||||
--- a/config/common_base
|
||||
+++ b/config/common_base
|
||||
@@ -442,6 +442,11 @@ CONFIG_RTE_LIBRTE_POWER_DEBUG=n
|
||||
CONFIG_RTE_MAX_LCORE_FREQS=64
|
||||
|
||||
#
|
||||
+# Compile ip_fragmentation
|
||||
+#
|
||||
+CONFIG_RTE_IP_FRAG=y
|
||||
+
|
||||
+#
|
||||
# Compile librte_net
|
||||
#
|
||||
CONFIG_RTE_LIBRTE_NET=y
|
||||
--
|
||||
1.9.1
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
From ebf07e9708c96aa1e655127175c39ad6ae3fc5ae Mon Sep 17 00:00:00 2001
|
||||
From: WU CHIA CHUAN <chia.chuan.wu@intel.com>
|
||||
Date: Tue, 28 Jul 2015 13:12:21 +0800
|
||||
Subject: [PATCH] dpdk enable ip_fragmentation in common_linuxapp config
|
||||
|
||||
Upstream-Status: Inappropriate [Configuration]
|
||||
|
||||
Signed-off-by: WU CHIA CHUAN <chia.chuan.wu@intel.com>
|
||||
---
|
||||
config/common_linuxapp | 5 +++++
|
||||
1 file changed, 5 insertions(+)
|
||||
|
||||
diff --git a/config/common_linuxapp b/config/common_linuxapp
|
||||
index 0b25f34..8cd97d7 100644
|
||||
--- a/config/common_linuxapp
|
||||
+++ b/config/common_linuxapp
|
||||
@@ -354,6 +354,11 @@ CONFIG_RTE_MAX_LCORE_FREQS=64
|
||||
CONFIG_RTE_LIBRTE_NET=y
|
||||
|
||||
#
|
||||
+# Compile ip_fragmentation
|
||||
+#
|
||||
+CONFIG_RTE_IP_FRAG=y
|
||||
+
|
||||
+#
|
||||
# Compile librte_ip_frag
|
||||
#
|
||||
CONFIG_RTE_LIBRTE_IP_FRAG=y
|
||||
--
|
||||
1.9.1
|
||||
|
16
meta-isg/common/recipes-extended/dpdk/dpdk_16.04.bb
Normal file
16
meta-isg/common/recipes-extended/dpdk/dpdk_16.04.bb
Normal file
|
@ -0,0 +1,16 @@
|
|||
include dpdk.inc
|
||||
|
||||
SRC_URI += "\
|
||||
file://dpdk-16.04-add-config-variable-to-enable-disable-dpdk_qat.patch \
|
||||
file://dpdk-16.04-dpdk-enable-ip_fragmentation-in-common_base-config.patch \
|
||||
"
|
||||
|
||||
SRC_URI[dpdk.md5sum] = "0728d506d7f56eb64233e824fa3c098a"
|
||||
SRC_URI[dpdk.sha256sum] = "d631495bc6e8d4c4aec72999ac03c3ce213bb996cb88f3bf14bb980dad1d3f7b"
|
||||
|
||||
export EXAMPLES_BUILD_DIR = "${RTE_TARGET}"
|
||||
export ARCHDIR = "generic"
|
||||
|
||||
do_configure_prepend () {
|
||||
sed -e "s#CONFIG_RTE_LIBRTE_POWER=y#CONFIG_RTE_LIBRTE_POWER=${CONFIG_EXAMPLE_VM_POWER_MANAGER}#" -i ${S}/config/common_linuxapp
|
||||
}
|
|
@ -1,16 +0,0 @@
|
|||
include dpdk.inc
|
||||
|
||||
SRC_URI += "\
|
||||
file://dpdk-2.2.0-add-config-variable-to-enable-disable-dpdk_qat.patch \
|
||||
file://dpdk-2.2.0-dpdk-enable-ip_fragmentation-in-common_linuxapp.patch \
|
||||
"
|
||||
|
||||
SRC_URI[dpdk.md5sum] = "22e2fd68cd5504f43fe9a5a6fd6dd938"
|
||||
SRC_URI[dpdk.sha256sum] = "77206ad93618ec93ef6e59566e240aa80b6f660d12693febf0fa96ee23bd610d"
|
||||
|
||||
export EXAMPLES_BUILD_DIR = "${RTE_TARGET}"
|
||||
export ARCHDIR = "generic"
|
||||
|
||||
do_configure_prepend () {
|
||||
sed -e "s#CONFIG_RTE_LIBRTE_POWER=y#CONFIG_RTE_LIBRTE_POWER=${CONFIG_EXAMPLE_VM_POWER_MANAGER}#" -i ${S}/config/common_linuxapp
|
||||
}
|
Loading…
Reference in New Issue
Block a user