summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/NEWS.md6
-rwxr-xr-xdocs/quickstart.md7
2 files changed, 13 insertions, 0 deletions
diff --git a/docs/NEWS.md b/docs/NEWS.md
index 892bfabf..0e322580 100644
--- a/docs/NEWS.md
+++ b/docs/NEWS.md
@@ -10,6 +10,12 @@ once the community has digested the initial release.
## New
* Performance testing with continuous stream
+* Vanilla OVS support added.
+ * Support for non-DPDK OVS build.
+ * Build and installation support through Makefile will be added via
+ next patch(Currently it is possible to manually build ovs and
+ setting it in vsperf configuration files).
+ * PvP scenario is not yet implemented.
* CentOS7 support
* Verified on CentOS7
* Install & Quickstart documentation
diff --git a/docs/quickstart.md b/docs/quickstart.md
index 9ab15c15..45bca6c5 100755
--- a/docs/quickstart.md
+++ b/docs/quickstart.md
@@ -29,6 +29,13 @@ cd src
make
```
+VSPERF can be used with OVS without DPDK support. In this case you have to specify path to the kernel sources by WITH_LINUX parameter:
+
+```bash
+cd src
+make WITH_LINUX=/lib/modules/`uname -r`/build
+```
+
To delete a src subdirectory and its contents to allow you to re-clone simply use:
```bash