summaryrefslogtreecommitdiffstats
path: root/src/README
blob: 0492fa1daaf49a8ac2dcdd4bbd42214b8b124c4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
### Purpose of this folder - Quickview

1. contains place holders for upstream source code package.
2. manages the package dependency
3. provides simple one-button build for test developers

### Motivation Explained

There are multiple goals for the project vswitch performance characterization.
First,  it is a generic test framework that can be used to characterize any vswitch solution.
Second, it is to be as CI tool to validate any change during development.

For the first goal, it would be nice to get all the relevant upstream source package and
to provide a easy build environment for a given test developer. Obviously we don't want to
rewrite the makefile system from upstream project. However we need to add a wrapper to the
individual packages to manage package dependecy. For example, to test ovs-dpdk vswitch solution,
the build of ovs would depend on the build result of dpdk.
This dependency is never explicitly specified in the individual package.

For the second goal as a CI tool, it may not be needed to pull the upstream package.
So this whole folder can be ignored.

### Files and subfolders

* package-list: contains list of packages and their associated tags
* mk:           contains top level makefiles
* dpdk:         place holder for dpdk package
* ovs:          place holder for ovs package.
* l2fwd:        simple l2 forwarding kernel module
name="author" content=""> {% block head-title %} <title>OPNFV Laas {{ title }}</title> {% endblock head-title %} <!-- Bootstrap Core CSS --> <link href="{% static "node_modules/bootstrap/dist/css/bootstrap.min.css" %}" rel="stylesheet"> <!-- Custom Fonts --> <link href="{% static "node_modules/@fortawesome/fontawesome-free/css/all.min.css" %}" rel="stylesheet" type="text/css"> <link href="{% static "css/base.css" %}" rel="stylesheet"> <!-- Favicon --> <link rel="shortcut icon" href="{% static 'favicon.ico' %}"> <!-- jQuery --> <script src="{% static "node_modules/jquery/dist/jquery.min.js" %}"></script> {% block extrahead %} {% endblock extrahead %} <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> </head> {% block extrastyle %} {% endblock extrastyle %} <body> {% block basecontent %} {% endblock basecontent %} <!-- Popper.js --> <script src="{% static "node_modules/popper.js/dist/umd/popper.min.js" %}"></script> <!-- Bootstrap Core JavaScript --> <script src="{% static "node_modules/bootstrap/dist/js/bootstrap.min.js" %}"></script> {% block extrajs %} {% endblock extrajs %} </body> </html>