blob: 60f903c1ffa926e8d47efbe63ee3ea898091292c (
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
30
|
<!---
This work is licensed under a Creative Commons Attribution 4.0 International License.
http://creativecommons.org/licenses/by/4.0
-->
This folder abstract out details among linux distros.
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
If you want to use vsperf in trafficgen-mode ONLY, then add a parameter.
./build_base_machine.sh trafficgen
Newer Kernel Versions:
----------------------
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'
|