diff options
author | Sridhar K. N. Rao <srao@linuxfoundation.org> | 2022-05-03 05:42:21 +0530 |
---|---|---|
committer | Sridhar K. N. Rao <srao@linuxfoundation.org> | 2022-05-13 11:24:03 +0530 |
commit | 826226243eca12ea6166d740205584392fdf7cad (patch) | |
tree | de96f10f49b5bfbd6dd6f697682784e2256e740c /src/package-list.mk.dpdk_meson | |
parent | 2fcc501a8cf9f5a7dbcedf48946e225dfc485ff8 (diff) |
[Update] Support Newer versions of DPDK and OVS.
This patch adds support for DPDK and OVS.
The support is not default and user has to modify the Makefiles manually
Changes post-review by Al.
Signed-off-by: Sridhar K. N. Rao <srao@linuxfoundation.org>
Change-Id: I5d6d2c6d693d31f0930b469de849722e2d5ec418
Diffstat (limited to 'src/package-list.mk.dpdk_meson')
-rw-r--r-- | src/package-list.mk.dpdk_meson | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/package-list.mk.dpdk_meson b/src/package-list.mk.dpdk_meson new file mode 100644 index 00000000..3c219e53 --- /dev/null +++ b/src/package-list.mk.dpdk_meson @@ -0,0 +1,32 @@ +# Copyright (c) 2016-2017 Intel corporation. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Upstream Package List +# +# Everything here is defined as its suggested default +# value, it can always be overriden when invoking Make + +# dpdk section +# DPDK_URL ?= git://dpdk.org/dpdk +DPDK_URL ?= http://dpdk.org/git/dpdk +DPDK_TAG ?= v22.03 + +# OVS section +OVS_URL ?= https://github.com/openvswitch/ovs +OVS_TAG ?= v2.17.0 + +# VPP section +VPP_URL ?= https://git.fd.io/vpp +VPP_TAG ?= v21.01 + +# QEMU section +QEMU_URL ?= https://github.com/qemu/qemu.git +QEMU_TAG ?= v3.1.1 + +# TREX section +TREX_URL ?= https://github.com/cisco-system-traffic-generator/trex-core.git +TREX_TAG ?= v2.86 |