trex: Tests with T-Rex in VM
[vswitchperf.git] / systems / rhel / 7.3 / build_base_machine.sh
1 #!/bin/bash
2 #
3 # Build a base machine for RHEL 7.3
4 #
5 # Copyright 2016 OPNFV, Intel Corporation & Red Hat Inc.
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 # Contributors:
20 #   Aihua Li, Huawei Technologies.
21 #   Martin Klozik, Intel Corporation.
22 #   Abdul Halim, Intel Corporation.
23 #   Christian Trautman, Red Hat Inc.
24
25 # Make and Compilers
26 pkglist=(\
27  automake\
28  fuse-devel\
29  gcc\
30  gcc-c++\
31  glib2-devel\
32  glibc\
33  kernel-devel\
34  openssl-devel\
35  pixman-devel\
36  sysstat\
37 )
38
39 # Tools
40 pkglist=(
41  "${pkglist[@]}"\
42  git\
43  libtool\
44  libpcap-devel\
45  libnet\
46  net-tools\
47  openssl\
48  openssl-devel\
49  pciutils\
50  socat\
51  tk-devel\
52  wget\
53  numactl\
54  numactl-devel\
55  libpng-devel\
56  epel-release\
57  sshpass\
58 )
59
60 # python tools for proper QEMU, DPDK, and OVS make
61 pkglist=(
62  "${pkglist[@]}"\
63  python-six\
64 )
65
66 # Iterate installing each package. If packages fail to install, record those
67 # packages and exit with an error message on completion. Customer may need to
68 # add repo locations and subscription levels.
69 failedinstall=()
70 for pkg in ${pkglist[*]}; do
71     echo "Installing ${pkg}"
72     yum -y install ${pkg} || failedinstall=("${failedinstall[*]}" "$pkg")
73 done
74
75 if [ "${#failedinstall[*]}" -gt 0 ]; then
76     echo "The following packages failed to install. Please add appropriate repo\
77  locations and/or subscription levels. Then run the build script again."
78     for fail in ${failedinstall[*]}; do
79         echo $fail
80     done
81     exit 1
82 fi
83
84 # install SCL for python34 by adding a repo to find its location to install it
85 cat <<'EOT' >> /etc/yum.repos.d/python34.repo
86 [centos-sclo-rh]
87 name=CentOS-7 - SCLo rh
88 baseurl=http://mirror.centos.org/centos/7/sclo/$basearch/rh/
89 gpgcheck=0
90 enabled=1
91 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo
92 EOT
93
94 # install python34 packages and git-review tool
95 yum -y install $(echo "
96 rh-python34
97 rh-python34-python-tkinter
98 " | grep -v ^#)
99
100 # cleanup python 34 repo file
101 rm -f /etc/yum.repos.d/python34.repo
102
103 # Create hugepage dirs
104 mkdir -p /dev/hugepages
105
106 # prevent ovs vanilla from building from source due to kernel incompatibilities
107 sed -i s/'SUBBUILDS = src_vanilla'/'#SUBBUILDS = src_vanilla'/ ../src/Makefile