aboutsummaryrefslogtreecommitdiffstats
path: root/systems
diff options
context:
space:
mode:
authorSridhar Rao <srao@linuxfoundation.org>2022-12-02 05:56:40 +0000
committerGerrit Code Review <gerrit@opnfv.org>2022-12-02 05:56:40 +0000
commit34147ac299351c44d4f7d135892457fba38a132b (patch)
treee567eda1f86edfa9c3b962d0bef180f2a8a2ce81 /systems
parent3c9c1529fde2304ed54c39ee61f5c14cd1fb8fb5 (diff)
parent98177ae9f931901646403485aadbed6f6813cad0 (diff)
Merge "DPDK: Default to Meson-Build of DPDK."stable/nile
Diffstat (limited to 'systems')
-rw-r--r--systems/README.md24
1 files changed, 18 insertions, 6 deletions
diff --git a/systems/README.md b/systems/README.md
index 60f903c1..d0812a81 100644
--- a/systems/README.md
+++ b/systems/README.md
@@ -10,13 +10,14 @@ One time setup:
On a freshly built system, run the following with a super user privilege
or with password less sudo access.
-
-./build_base_machine.sh
+```
+ ./build_base_machine.sh
+```
If you want to use vsperf in trafficgen-mode ONLY, then add a parameter.
-
-./build_base_machine.sh trafficgen
-
+```
+ ./build_base_machine.sh trafficgen
+```
Newer Kernel Versions:
----------------------
@@ -26,5 +27,16 @@ May need following changes:
1. In src/l2fwd/l2fwd.c, comment out the line with xmit_more (193).
2. In src/qemu/Makefile, In line 30, we MAY have to add the following:
- --disable-werror --python='/usr/bin/python3'
+```
+ --disable-werror
+```
+3. In src/qemu/Makefile, In line 31, we MAY have to change python flag to:
+```
+ --python='/usr/bin/python3'
+```
+4. If Fedora 32+ is used, then change the line 52 in src/ovs/Makefile to:
+```
+ DPDK_LIB = $(DPDK_DIR)/build/lib64
+```
+