diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/00_common.conf | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/conf/00_common.conf b/conf/00_common.conf index 225cf476..944619c5 100644 --- a/conf/00_common.conf +++ b/conf/00_common.conf @@ -18,6 +18,15 @@ import os +# default language and encoding, which will be set in case +# that locale is not set properly +DEFAULT_LOCALE = 'en_US.UTF-8' + +# default language and encoding, which will be used by external +# commands; This values will be set in case, that VSPERF parses +# command output. +DEFAULT_CMD_LOCALE = 'en_US.UTF-8' + # ############################ # Directories # ############################ @@ -28,13 +37,13 @@ TRAFFICGEN_DIR = os.path.join(ROOT_DIR, 'tools/pkt_gen') SYSMETRICS_DIR = os.path.join(ROOT_DIR, 'tools/collectors') # deployment specific paths to OVS and DPDK -OVS_DIR_VANILLA = os.path.join(ROOT_DIR, 'src_vanilla/ovs/ovs/') +OVS_DIR_VANILLA = os.path.join(ROOT_DIR, 'src_vanilla/ovs/ovs/') -RTE_SDK_CUSE = os.path.join(ROOT_DIR, 'src_cuse/dpdk/dpdk/') -OVS_DIR_CUSE = os.path.join(ROOT_DIR, 'src_cuse/ovs/ovs/') +RTE_SDK_CUSE = os.path.join(ROOT_DIR, 'src_cuse/dpdk/dpdk/') +OVS_DIR_CUSE = os.path.join(ROOT_DIR, 'src_cuse/ovs/ovs/') -RTE_SDK_USER = os.path.join(ROOT_DIR, 'src/dpdk/dpdk/') -OVS_DIR_USER = os.path.join(ROOT_DIR, 'src/ovs/ovs/') +RTE_SDK_USER = os.path.join(ROOT_DIR, 'src/dpdk/dpdk/') +OVS_DIR_USER = os.path.join(ROOT_DIR, 'src/ovs/ovs/') # the same qemu version is used for vanilla, vHost User and Cuse QEMU_DIR = os.path.join(ROOT_DIR, 'src/qemu/qemu/') |