1 Star 0 Fork 0

caipengxiang/mtcp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup_linux_env.sh 564 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
GREEN='\033[0;32m'
NC='\033[0m'
# Get to script directory
cd $(dirname ${BASH_SOURCE[0]})/
# Remove dpdk_iface.ko module
if [$# -ne 1];
then
export RTE_SDK=$1
else
export RTE_SDK=$PWD/dpdk
fi
printf "${GREEN}Removing dpdk_iface module...\n $NC"
if lsmod | grep dpdk_iface &> /dev/null ; then
sudo rmmod dpdk_iface.ko
else
:
fi
# Compile dpdk and configure system
if [ -f $RTE_SDK/usertools/dpdk-setup.sh ]; then
bash $RTE_SDK/usertools/dpdk-setup.sh
else
bash $RTE_SDK/tools/setup.sh
fi
printf "${GREEN}Goodbye!$NC\n"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/awfeequdng/mtcp.git
git@gitee.com:awfeequdng/mtcp.git
awfeequdng
mtcp
mtcp
master

搜索帮助