summaryrefslogtreecommitdiffstats
path: root/meta-isg
Commit message (Collapse)AuthorAgeFilesLines
* meta-isg/dpdk: Update v16.04 -> v16.07Rahul Kumar Gupta2016-09-086-64/+105
| | | | | | | | | | | | | | | | | Update the dpdk recipe from v16.04 to v16.07. Renamed and modified the patches: dpdk-16.04-add-sysroot-option-within-app-makefile.patch dpdk-16.04-dpdk-fix-installation-warning-and-issue.patch accordingly since these patches don't apply cleanly on top of dpdk v16.07. Fixed compilation by adding examples/ethtool/lib directory in DEPDIRS-y and by adding lib path in LDLIBS. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
* meta-isg: Update the MAINTAINERS file for retired BSP layersOng Chun Weng2016-08-301-10/+2
| | | | | | | | | Remove the maintainer name for HASWELL-WC and VALLEYISLAND from the maintainer list, since these two layers is retired on meta-intel master branch. Signed-off-by: Ong Chun Weng <chun.weng.ong@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
* meta-isg: meta-haswell-wc: BSP layer retirementOng Chun Weng2016-08-257-251/+0
| | | | | | | | | | | | The meta-haswell-wc BSP layer is retired in future YP releases.The plan is to consolidate all Intel SoC BSP into intel common BSP. Since the features provided by meta-haswell-wc can be obtained from Intel Common BSP with newer kernel version, this layer can be retired from master. Signed-off-by: Ong Chun Weng <chun.weng.ong@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
* meta-isg: meta-valleyisland: BSP layer retirementOng Chun Weng2016-08-259-341/+0
| | | | | | | | | This layer is retired from meta-intel master branch in future YP releases because there are no immediate requirements for support in newer LTSI kernel. Signed-off-by: Ong Chun Weng <chun.weng.ong@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
* meta-crystalforest: removing corpus filesRahul Kumar Gupta2016-08-151-3/+0
| | | | | | | | | | Crystalforest BSP is no longer using the firmware files provided by these recipes. These files were added to support qat. Now qat packages its own calgary and canterbury firmware as part of its tarball. So removing these from MACHINE_EXTRA_RRECOMMENDS. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
* meta-isg: openssl-qat: fix for patch errorRahul Kumar Gupta2016-08-041-12/+25
| | | | | | | | | | | | | | openssl-qat is different from other packages in the way that it has a patch present in a zip file that is unpacked and applied on top of openssl. This results in patch errors when doing an incremental build using bitbake. To resolve, splitted do_patch into two - one to unpack the qat patch and apply it on openssl. And, other to apply the patches added in SRC_URI. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
* meta-isg: zlib-qat: fix for unpack and patch errorRahul Kumar Gupta2016-08-041-14/+26
| | | | | | | | | | | | | | | | | zlib-qat is different from other packages in the way that it has a patch present in a zip file that is unpacked and applied on top of zlib. This results in errors when doing an incremental build using bitbake. To resolve, splitted do_patch into two - one to unpack the qat patch and apply it on zlib-1.2.8. And, other to apply the patches added in SRC_URI. Added flags "-q -o" flags to unzip command to quietly overwrite if files/folders already exist to avoid build from breaking. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
* meta-isg: zlib-qat: fix for GNU_HASH QA errorRahul Kumar Gupta2016-07-271-0/+1
| | | | | | | | | | Fix for: ERROR: QA Issue: No GNU_HASH in the elf binary by adding LDFLAGS to TARGET_CC_ARCH. To be sure that the LDFLAGS variable is being passed to the linker command. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
* meta-isg: qat16: fix for GNU_HASH QA issueRahul Kumar Gupta2016-07-271-0/+1
| | | | | | | | | Fix for: ERROR: QA Issue: No GNU_HASH in the elf binary by adding LDFLAGS to TARGET_CC_ARCH. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
* meta-isg: dpdk: fix compilation with dynamic libsRahul Kumar Gupta2016-07-222-0/+31
| | | | | | | | | Ensure that the correct CFLAGS are passed to LD when compiling rte libs as shared. For building the dpdk with config CONFIG_RTE_BUILD_SHARED_LIB=y Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
* meta-isg: dpdk: simplify do_installRahul Kumar Gupta2016-07-222-32/+93
| | | | | | | Using makefile for installing targets. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
* meta-isg: dpdk: fix for GNU_HASH QA issueRahul Kumar Gupta2016-07-221-2/+2
| | | | | | | | fix for: ERROR: QA Issue: No GNU_HASH in the elf binary Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
* meta-isg: dpdk : Fix for misleading indentation errorRahul Kumar Gupta2016-07-062-0/+57
| | | | | | | | | | Corrected the identation of code to match the block structure to avoid error/warning for build. Since yocto is using -Wall and -Werror flags so this warning is treated as error. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
* recipes: use bb.utils.contains instead of base_containsRoss Burton2016-05-161-3/+3
| | | | | | | | base_contains is simply a compatibility wrapper and may warn in the future, so replace all instances with bb.utils.contains(). Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
* meta-isg: dpdk: Update v2.2.0 -> v16.04Rahul Kumar Gupta2016-04-149-50/+52
| | | | | | | | | | | | 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>
* meta-isg: qat16: update v2.3.0-34 -> v2.6.0-65Rahul Kumar Gupta2016-04-126-168/+179
| | | | | | | | | | | | | | | * Add recipe for qat16 v2.6.0-65 and retire qat16 v2.3.0-34 with respective patches * Use the version directly in SRC_URI instead of ${PV} since version of qatmux (v2.6.0-60) and qat16 (v2.6.0-65) are no longer same. * Added an install target to makefiles to help install ingredients at a proper path. * Ensure that compiler linker and archiver will override only when it is not defined by the environment. * Override the MACHINE name for do_install. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: qat16: move src url path from inc to bbRahul Kumar Gupta2016-04-122-3/+3
| | | | | | | | | | | | Move the inclusion of SRC_URI: https://01.org/sites/default/files/page/qatmux.l.${PV}.tgz;name=qat from qat16.inc to version specific qat16 bb files. Since qatmux version and qat16 version is no more same. So can't use ${PV} variable for next version. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: zlib-qat: explicitly set EXTRA_OEMAKE requiredRahul Kumar Gupta2016-03-301-0/+1
| | | | | | | | | The openssl recipe currently relies on EXTRA_OEMAKE having been set to "-e MAKEFLAGS=" in bitbake.conf to operate. It is necessary to make this explicit so that the default in bitbake.conf can be changed. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: openssl-qat: fix configure and compilationRahul Kumar Gupta2016-03-301-2/+2
| | | | | | | | | | | | 'disable-static' option is there in EXTRA_OECONF variable. No such option is supported by configure script. So better to pass required option directly without using variable. This recipe currently relies on EXTRA_OEMAKE having been set to "-e MAKEFLAGS=" in bitbake.conf to operate. It is necessary to make this explicit so that the default in bitbake.conf can be changed. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: qat16: fix v2.5.0 build with kernel v4.4Rahul Kumar Gupta2016-03-303-3/+75
| | | | | | | | | | | | | | The qat recipe currently relies on EXTRA_OEMAKE having been set to "-e MAKEFLAGS=" in bitbake.conf to operate. It is necessary to make this explicit so that the default in bitbake.conf can be changed. The prototype of a func used in QAT16 is changed in kernel v4.4 Also, make sure that we point to the correct include path to the local headers. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: openssl-qat: Add support for v0.4.9-009Rahul Kumar Gupta2016-02-129-0/+5194
| | | | | | | | | | | | | | | | | | | | This recipe adds the openssl-qat engine that accelerates some of the libcrypto algorithms via the Intel QAT implemented on Intel communication chipsets. QAT sample patch v0.4.9-009 is based on async branch of openssl-1.0.1m. openssl & zlib shim layers both install the qat_mem.ko driver. Make openssl shim dependent on zlib-qat and ensure that only zlib-qat installs this kernel module. This fix change in future when qat_mem module has been forked into a separate package. The recipe is for platforms like grantley and crystalforest using the common BSP intel-corei7-64. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: dpdk v2.2.0: rename the patches usedRahul Kumar Gupta2016-01-126-14/+14
| | | | | | | | | | | | This will rename the patches according to the dpdk version. modify the .inc and .bb according to modified name of patches. change the commit msg for patch: dpdk-2.2.0-add-sysroot-option-within-app-makefile.patch since it have mentioned the version not in use. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: dpdk: retire older ver v2.0.0 and v1.8.0Rahul Kumar Gupta2016-01-1211-748/+0
| | | | | | | | Removing the older version recipe dpdk v2.0.0 and dpdk v1.8.0 since newer version added so it is no longer required. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: dpdk: Upgrade DPDK v2.1.0 to DPDK v2.2.0Rahul Kumar Gupta2016-01-123-12/+12
| | | | | | | | | This will upgrade the recipe dpdk v2.1.0 to dpdk v2.2.0. The recipe is for platforms like grantley and crystalforest using the common BSP intel-corei7-64. Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: dpdk: fix v1.8.0 build with kernel 4.1Anuj Mittal2015-10-193-1/+232
| | | | | | | | Backported fixes from upstream dpdk sources to ensure dpdk 1.8.0 compiles against kernel 4.1. Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: dpdk: fix v2.0.0 build with kernel 4.1Anuj Mittal2015-10-197-0/+447
| | | | | | | | Backported fixes from upstream dpdk sources to ensure dpdk 2.0.0 compiles against kernel 4.1. Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-mohonpeak: update the PREFERRED_VERSION of linux-yocto-3.14 to 4.1Wu Chia Chuan2015-10-022-2/+2
| | | | | | | | Update the PREFERRED_VERSION of linux-yocto-3.14 to 4.1 for mohonpeak32 and mohonpeak64 machines. Signed-off-by: Wu Chia Chuan <chia.chuan.wu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-crystalforest: update the PREFERRED_VERSION of linux-yocto-3.14 to 4.1Wu Chia Chuan2015-10-021-1/+1
| | | | | | | Update the PREFERRED_VERSION of linux-yocto-3.14 to 4.1 for crystalforest BSP. Signed-off-by: Wu Chia Chuan <chia.chuan.wu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-crystalforest: relocate meta-crystalforest layer into meta-isg layerWu Chia Chuan2015-10-0210-0/+337
| | | | | | | | This is in support of BSP consolidation of all Intel platforms in to meta-isg common layer. The "MAINTAINERS file" and "meta-isg/MAINTAINERS file" are updated to reflect the changed. Signed-off-by: Wu Chia Chuan <chia.chuan.wu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-intel: meta-romley BSP retirement from YP 2.0WU CHIA CHUAN2015-09-291-2/+0
| | | | | | | | | | | | | | | | | | | | Remove meta-romley BSP layer from meta-intel master branch which is targeting for YP 2.0. A heads-up email was sent to the meta-intel mailing list for requesting any feedback regarding retirement of these BSP. Since there is no concern, we assume that it is agreed upon and thus this patch to retire the BSP. The "MAINTAINERS file" and "conf/machine/README file" are updated to reflect removal of the BSP. We expect intel-corei7-64 machine is continued to be used to support the platform and dpdk recipe under meta-romley is now supported under meta-isg/common/recipes-extended/dpdk. Signed-off-by: WU CHIA CHUAN <chia.chuan.wu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: zlib-qat: add COMPATIBLE_MACHINEAnuj Mittal2015-09-211-1/+1
| | | | | | | | Mark common intel-core-i7 as the COMPATIBLE_MACHINE for zlib-qat recipe. Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: qat: add intel-corei7-64 COMPATIBLE_MACHINEAnuj Mittal2015-09-211-1/+1
| | | | | | | | Mark intel common BSP as the compatible machine for qat recipes. Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: qat: recipe for version 2.5.0-80Anuj Mittal2015-09-212-0/+398
| | | | | | | | This adds the recipe for qat16 v2.5.0-80 for grantley platforms using the common BSP intel-corei7-64. Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: qat: fix strict_str* compile errorsAnuj Mittal2015-09-212-0/+41
| | | | | | | | | | | | | | Defines strict_str* have become obsolete and removed entirely starting from kernel v3.18. This results in errors like: error: implicit declaration of function 'strict_strtoull' [-Werror=implicit-function-declaration] Replace strict_strtoull with kstrtoull to ensure qat 2.3.0-34 compiles. Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: qat: fix inline build errors for gcc5Anuj Mittal2015-09-212-0/+33
| | | | | | | | | | | | | | | | | | | | | | gcc5 has changed its default standard to gnu11 from gnu89. These two standards have different inline semantics. This results in errors like: undefined reference to `icp_adf_getQueueNext' undefined reference to `icp_adf_updateQueueTail' undefined reference to `icp_adf_pollQueue' undefined reference to `icp_adf_queueDataToSend' undefined reference to `icp_adf_getQueueMemory' Use the -fgnu89-inline command line option as suggested in [1]. Also, make sure that all the CFLAGS values are being picked up by the compiler. [1] https://gcc.gnu.org/gcc-5/porting_to.html Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: qat: move common content to qat16.incAnuj Mittal2015-09-212-114/+117
| | | | | | | | * Move common meta-data from version specific recipe to inc. * Remove PV in the recipe. Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-crystalforest: move qat and zlib-qat to meta-isgAnuj Mittal2015-09-018-0/+794
| | | | | | | | | | | Move qat and zlib-qat recipes from meta-crystalforest to meta-isg. This allows us to utilize these common components across all the supported platforms. Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: enable dpdk v2.1.0 for grantleyAnuj Mittal2015-08-272-0/+47
| | | | | | | | This adds the recipe for dpdk v2.1.0 for grantley platforms based on common intel-corei7-64 BSP. Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: dpdk: intel-corei7-64 as COMPATIBLE_MACHINEAnuj Mittal2015-08-271-0/+3
| | | | | | | | | | | Add intel-corei7-64 as a compatible machine in addition to crystalforest. This is in line with the move to intel common BSP for all supported platforms. Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: dpdk: move patch from inc to bbAnuj Mittal2015-08-273-2/+4
| | | | | | | | | | | | Move the inclusion of patch: dpdk-1.8.0-and-2.0.0-examples-add-config-variable-to-enable-disable-dpdk.patch from dpdk.inc to version specific dpdk bb files where it needs to be applied. This patch doesn't apply cleanly on top of dpdk v2.1. Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-haswell-wc: Update the PREREFFED_VERSION of linux-yocto-3.14 to 3.19Ng, Wei Tee2015-08-171-1/+1
| | | | | | | | Update the PREFERRED_VERSION of linux-yocto-3.14 to 3.19 for haswell-walnut canyon. Signed-off-by: Ng, Wei Tee <wei.tee.ng@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-valleyisland: Add linux-firmware to valleyisland BSPsNg Wei Tee2015-08-062-0/+3
| | | | | | | | | Add linux-firmware as a whole for both valleyisland-32.conf and valleyisland-64.conf in order to enable the Marvell 8897 card, as well as other devices requiring firmware blobs. Signed-off-by: Ng Wei Tee <wei.tee.ng@intel.com> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
* meta-isg: make dpdk_qat dependent on virtual/qatAnuj Mittal2015-07-291-1/+1
| | | | | | | | | | | | | | | | Make sure that we check for the right qat package when enabling dpdk_qat example. The qat package name has been changed to "virtual/qat" to enable switching between different/future versions of qat for supported platforms. The preferred version of "virtual/qat" can be set in machine conf when some other version, besides qat16, becomes available and needs to be supported. Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
* meta-isg: fix build of dpdk_qat example appAnuj Mittal2015-07-292-0/+45
| | | | | | | | | | | Make sure that the dpdk_qat example app builds okay when enabled using PACKAGECONFIG ?= " dpdk_qat". Added a patch to dpdk_qat makefile to point to correct location of qat libs and headers. Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
* meta-isg: dpdk v2.0.0: add patch to handle ip_fragmentation applicationWU CHIA CHUAN2015-07-292-0/+34
| | | | | | | | dpdk v2.0.0 required "CONFIG_RTE_IP_FRAG=y" in order to build ip_fragmentation application. Signed-off-by: WU CHIA CHUAN <chia.chuan.wu@intel.com> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
* meta-isg: dpdk: fix issue in build configuration variablesWU CHIA CHUAN2015-07-291-0/+9
| | | | | | | | | | | | | This patch fixes issue in build configuration variables that were not correctly parsed by do_configure() task.The environment variables are not evaluated because the config files under dpdk/config/ folder are not parsed by Makefile but instead by cpp compiler. Reported-by: Anuj Mittal <anujx.mittal@intel.com> Signed-off-by: Ong Boon Leong <boon.leong.ong@intel.com> Signed-off-by: WU CHIA CHUAN <chia.chuan.wu@intel.com> Tested-by: WU CHIA CHUAN <chia.chuan.wu@intel.com> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
* meta-isg: dpdk: tidy up dpdk.inc & removed unnecessary patchesWU CHIA CHUAN2015-07-296-185/+20
| | | | | | | | | This patch tidy up dpdk.inc and removing unnecessary patches. Integrating common recipe from dpdk_1.8.0.bb and dpdk_2.0.0.bb. Signed-off-by: Ong Boon Leong <boon.leong.ong@intel.com> Signed-off-by: WU CHIA CHUAN <chia.chuan.wu@intel.com> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
* meta-isg: dpdk v2.0.0: initial DPDK v2.0.0 enabling recipeWU CHIA CHUAN2015-07-101-0/+29
| | | | | | | | | This patch makes reference to early dpdk meta-data implementation and extends it to support DPDK v2.0.0. Signed-off-by: WU CHIA CHUAN <chia.chuan.wu@intel.com> Signed-off-by: Ong Boon Leong <boon.leong.ong@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: dpdk v2.0.0: add patch to handle vhost and ip_fragmentation ↵WU CHIA CHUAN2015-07-101-0/+50
| | | | | | | | | | | applications Introduce a patch to enable/disable the vhost and ip_fragmentation examples applications under common_linuxapp config file. The flag introduce is controlled by PACKAGECONFIG. Signed-off-by: WU CHIA CHUAN <chia.chuan.wu@intel.com> Signed-off-by: Ong Boon Leong <boon.leong.ong@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* meta-isg: dpdk: renaming patches which are common to DPDK v1.8 and DPDK v2.0WU CHIA CHUAN2015-07-105-4/+4
| | | | | | | | | For patches which are common to DPDK v1.8 and DPDK v2.0, they are renamed to following file naming format for clarity dpdk-1.8.0-and-2.0.0*.patch. Signed-off-by: WU CHIA CHUAN <chia.chuan.wu@intel.com> Signed-off-by: Ong Boon Leong <boon.leong.ong@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>