summaryrefslogtreecommitdiffstats
path: root/docs/submodules/dovetail
AgeCommit message (Expand)AuthorFilesLines
2017-09-11Update git submoduleshongbo tian1-0/+0
2017-09-08Update git submoduleshongbo tian1-0/+0
2017-09-08Update git submoduleshongbo tian1-0/+0
2017-09-08Update git submodulesxudan1-0/+0
2017-09-08Update git submodulesLeo wang1-0/+0
2017-09-08Update git submodulesxudan1-0/+0
2017-09-07Update git submoduleshongbo tian1-0/+0
2017-09-07Update git submoduleshongbo tian1-0/+0
2017-09-06Update git submodulesLeo wang1-0/+0
2017-09-06Update git submodulesxudan1-0/+0
2017-09-06Update git submoduleshongbo tian1-0/+0
2017-09-06Update git submoduleshongbo tian1-0/+0
2017-09-06Update git submodulesLeo wang1-0/+0
2017-09-05Update git submoduleshongbo tian1-0/+0
2017-09-05Update git submoduleshongbo tian1-0/+0
2017-09-04Update git submoduleshongbo tian1-0/+0
2017-09-01Update git submoduleshongbo tian1-0/+0
2017-09-01Update git submoduleshongbo tian1-0/+0
2017-08-31Update git submodulesxudan1-0/+0
2017-08-28Update git submodulesLeo wang1-0/+0
2017-08-28Update git submodulesLeo wang1-0/+0
2017-08-25Update git submodulesTrevor Cooper1-0/+0
2017-08-25Update git submoduleshongbo tian1-0/+0
2017-08-22Update git submodulesgrakiss1-0/+0
2017-08-17Update git submodulesgrakiss1-0/+0
2017-08-17Update git submodulesxudan1-0/+0
2017-08-17Update git submodulesxudan1-0/+0
2017-08-16Update git submodulesxudan1-0/+0
2017-08-16Update git submodulesxudan1-0/+0
2017-08-11Update git submodulesLeo wang1-0/+0
2017-08-11Update git submodulesLeo wang1-0/+0
2017-08-09Update git submodulesgrakiss1-0/+0
2017-08-08Update git submodulesgrakiss1-0/+0
2017-08-04Update git submoduleshongbo tian1-0/+0
2017-08-04Update git submoduleshongbo tian1-0/+0
2017-08-04Update git submodulesxudan1-0/+0
2017-08-02Update git submodulesxudan1-0/+0
2017-08-02Update git submoduleshongbo tian1-0/+0
2017-08-02Update git submoduleshongbo tian1-0/+0
2017-07-21Update git submoduleshongbo tian1-0/+0
2017-07-21Update git submodulesxudan1-0/+0
2017-07-21Update git submodulesLeo wang1-0/+0
2017-07-21Update git submodulesLeo wang1-0/+0
2017-07-21Update git submodulesLeo wang1-0/+0
2017-07-21Update git submodulesLeo wang1-0/+0
2017-07-20Update git submoduleshongbotian1-0/+0
2017-07-04Update git submodulesMatthewLi1-0/+0
2017-06-30Update git submodulesLeo wang1-0/+0
2017-06-30Update git submodulesxudan1-0/+0
2017-06-28Update git submoduleshongbo tian1-0/+0
n class="nb">popd mv "$REPO_DIR/dpdk-16.07" "$INSTALL_BIN_PATH" rm dpdk-16.07.zip fi export RTE_SDK="$INSTALL_BIN_PATH/dpdk-16.07" export RTE_TARGET=x86_64-native-linuxapp-gcc if [ ! -f "$INSTALL_BIN_PATH/vPE_vnf" ]; then pushd . echo "Building vPE VNF..." cd $INSTALL_BIN_PATH/dpdk-16.07/examples/ip_pipeline/ make clean make cp build/ip_pipeline $INSTALL_BIN_PATH/vPE_vnf popd fi echo "Done" } push_nsb_binary() { if [ ! -d "$INSTALL_BIN_PATH/trex/scripts" ]; then cp -fr "$REPO_DIR/trex" "$INSTALL_BIN_PATH" fi rm -rf "$REPO_DIR/trex" if [ -d "$INSTALL_BIN_PATH/trex" ]; then echo "Setup Environment variables for Test Harness...." PYTHONPATH="$INSTALL_BIN_PATH/trex/scripts/automation/trex_control_plane:$INSTALL_BIN_PATH/trex/scripts/automation/trex_control_plane/stl" PY_PATH=$(grep PYTHONPATH ~/.bash_profile) if [ "$PY_PATH" = "" ] ; then sh -c "echo export PYTHONPATH=$PYTHONPATH >> ~/.bash_profile" > /dev/null else echo "Your ~/.bash_profile already contains a PYTHONPATH definition." echo "Make sure it contains $PYTHONPATH which is required to run TRex" fi fi cp "$REPO_DIR/yardstick/network_services/nfvi/collectd.sh" "$INSTALL_BIN_PATH" cp "$REPO_DIR/yardstick/network_services/nfvi/collectd.conf" "$INSTALL_BIN_PATH" cp "$REPO_DIR/nsb_setup.sh" "$INSTALL_BIN_PATH" echo "Done" } check_installed_files() { if [ ! -f "$INSTALL_BIN_PATH/yardstick_venv/bin/activate" ]; then echo "Installation Error. Failed to create yardstick virtual env..." exit 1 fi if [ ! -d "$INSTALL_BIN_PATH/dpdk-16.07" ]; then echo "Installation Error. Failed to download and install dpdk-16.07..." exit 1 fi if [ ! -d "$INSTALL_BIN_PATH/trex" ]; then echo "Installation Error. Failed to download and configure Trex" exit 1 fi if [ ! -f "$INSTALL_BIN_PATH/vPE_vnf" ]; then echo "Installation Error. vPE VNF not present in install dir $INSTALL_BIN_PATH" exit 1 fi } if [ "$1" == "dpdk" ]; then install_libs install_dpdk else install_libs install_yardstick install_dpdk install_trex push_nsb_binary check_installed_files clear echo "Installation completed..." echo "Virtual Environment : $INSTALL_BIN_PATH/yardstick_venv" echo "Please refer to Chapter 13 of the Yardstick User Guide for how to get started with VNF testing." fi