Updates/Fix on Legal/License Headers
[barometer.git] / systems / fedora / 22 / build_base_machine.sh
1 #!/bin/bash
2 #
3 # Build a base machine for Fedora 22
4 #
5 # Copyright 2016-2019 Intel Corporation and OPNFV. All rights reserved.
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 #
20 # Contributors:
21 #   Aihua Li, Huawei Technologies.
22 #   Martin Klozik, Intel Corporation.
23 #   Abdul Halim, Intel Corporation.
24
25 dnf -y install $(echo "
26 # Make and Compilers
27 make
28 automake
29 gcc
30 gcc-c++
31 libxml2
32 glibc
33 glib2-devel
34 kernel-devel
35 kernel-modules-extra
36 pixman-devel
37 openssl-devel
38 net-snmp-devel
39
40 # tools
41 curl
42 autoconf
43 libtool
44 libpcap-devel
45 libnet
46 libvirt-daemon
47 vim
48 wget
49 git
50 pciutils
51 cifs-utils
52 socat
53 hiredis-devel
54
55 # install git-review tool
56 git-review
57 " | grep -v ^#)