aboutsummaryrefslogtreecommitdiffstats
path: root/systems/centos/build_base_machine.sh
blob: d94dc975598fbba736b846f4e72c36ae927d6759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/bin/bash
#
# Build a base machine for CentOS distro
#
# Copyright 2015 OPNFV
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Contributors:
#   Aihua Li, Huawei Technologies.
#   Martin Klozik, Intel Corporation.

# Synchronize package index files
yum -y update

# Install required packages
yum -y install $(echo "

# Make, Compilers and devel
make
gcc
gcc-c++
libxml2
glibc
kernel-devel

# tools
wget
git
scl-utils
vim
curl
autoconf
libtool
automake
pciutils
cifs-utils
sysstat

# libs
libpcap-devel
libnet
fuse
fuse-libs
fuse-devel
zlib
zlib-devel
glib2-devel
pixman-devel
socat
numactl
numactl-devel

# install gvim
vim-X11

# install epel release required for git-review
epel-release
" | grep -v ^#)

# install SCL for python33
wget https://www.softwarecollections.org/en/scls/rhscl/python33/epel-7-x86_64/download/rhscl-python33-epel-7-x86_64.noarch.rpm
rpm -i rhscl-python33-epel-7-x86_64.noarch.rpm

# install python33 packages and git-review tool
yum -y install $(echo "
python33
python33-python-tkinter
git-review
" | grep -v ^#)