2fd36c9b25
This is used for testing - not as part of the build - but we already have astyle and pep8 in pkgdep.sh so adding sg3_utils seems OK. Signed-off-by: Jim Harris <james.r.harris@intel.com> Change-Id: I3826fc0395c7d45f0308477e850d21ba87afec45 Reviewed-on: https://review.gerrithub.io/393693 Tested-by: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
42 lines
1.4 KiB
Bash
Executable File
42 lines
1.4 KiB
Bash
Executable File
#!/bin/sh
|
|
# Please run this script as root.
|
|
|
|
SYSTEM=`uname -s`
|
|
|
|
if [ -s /etc/redhat-release ]; then
|
|
# Includes Fedora, CentOS
|
|
if [ -f /etc/centos-release ]; then
|
|
# Add EPEL repository for CUnit-devel
|
|
yum --enablerepo=extras install -y epel-release
|
|
fi
|
|
yum install -y gcc gcc-c++ make CUnit-devel libaio-devel openssl-devel \
|
|
git astyle-devel python-pep8 lcov python clang-analyzer libuuid-devel \
|
|
sg3_utils
|
|
# Additional dependencies for NVMe over Fabrics
|
|
yum install -y libibverbs-devel librdmacm-devel
|
|
# Additional dependencies for DPDK
|
|
yum install -y numactl-devel
|
|
# Additional dependencies for building docs
|
|
yum install -y doxygen mscgen
|
|
# Additional dependencies for building nvml based backends
|
|
yum install -y libpmemblk-devel || true
|
|
elif [ -f /etc/debian_version ]; then
|
|
# Includes Ubuntu, Debian
|
|
apt-get install -y gcc g++ make libcunit1-dev libaio-dev libssl-dev \
|
|
git astyle pep8 lcov clang uuid-dev sg3-utils
|
|
# Additional dependencies for NVMe over Fabrics
|
|
apt-get install -y libibverbs-dev librdmacm-dev
|
|
# Additional dependencies for DPDK
|
|
apt-get install -y libnuma-dev
|
|
# Additional dependencies for building docs
|
|
apt-get install -y doxygen mscgen
|
|
elif [ $SYSTEM = "FreeBSD" ] ; then
|
|
pkg install gmake cunit openssl git devel/astyle bash devel/pep8 \
|
|
python misc/e2fsprogs-libuuid sysutils/sg3_utils
|
|
# Additional dependencies for building docs
|
|
pkg install doxygen mscgen
|
|
else
|
|
echo "pkgdep: unknown system type."
|
|
exit 1
|
|
fi
|